source:
src/main/java/com/example/moviezone/service/TicketService.java@
f17f34f
Last change on this file since f17f34f was f17f34f, checked in by , 22 months ago | |
---|---|
|
|
File size: 216 bytes |
Line | |
---|---|
1 | package com.example.moviezone.service; |
2 | |
3 | import com.example.moviezone.model.Ticket; |
4 | |
5 | import java.util.List; |
6 | |
7 | public interface TicketService { |
8 | List<Ticket> findAllTickets(); |
9 | List<Ticket> findAllByCustomer(); |
10 | } |
Note:
See TracBrowser
for help on using the repository browser.