source: src/main/java/mk/ukim/finki/busngo/service/BiletService.java@ b101b69

Last change on this file since b101b69 was b101b69, checked in by ppaunovski <paunovskipavel@…>, 6 months ago

initial classes, no inheritance yet v2

  • Property mode set to 100644
File size: 468 bytes
Line 
1package mk.ukim.finki.busngo.service;
2
3import mk.ukim.finki.busngo.model.entities.Bilet;
4import mk.ukim.finki.busngo.model.enums.BILET_STATUS;
5
6import java.time.LocalDateTime;
7import java.util.List;
8
9public interface BiletService {
10 List<Bilet> listAll();
11 List<Bilet> findAllByPatnikId(Long id);
12 List<Bilet> findAllByPatnikIdAndStatus(Long id, BILET_STATUS status);
13
14 Bilet buy(Long tipbilet, LocalDateTime now, BILET_STATUS biletStatus, String name);
15}
Note: See TracBrowser for help on using the repository browser.