Last change
on this file since 8d49568 was fdc651c, checked in by milamihajlovska <mila.mihajlovska01@…>, 22 months ago |
seatService, seatServiceImpl
|
-
Property mode
set to
100644
|
File size:
296 bytes
|
Line | |
---|
1 | package com.example.moviezone.service;
|
---|
2 |
|
---|
3 | import com.example.moviezone.model.Projection_Room;
|
---|
4 | import com.example.moviezone.model.Seat;
|
---|
5 |
|
---|
6 | import java.util.List;
|
---|
7 |
|
---|
8 | public interface SeatService {
|
---|
9 | List<Seat> findAllSeats();
|
---|
10 | List<Seat> findAllByProjection_Room(Projection_Room projection_room);
|
---|
11 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.