- Timestamp:
- 01/09/24 01:26:08 (10 months ago)
- Branches:
- master
- Children:
- e272096
- Parents:
- b101b69
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/java/mk/ukim/finki/busngo/service/BiletService.java
rb101b69 rbde8b13 2 2 3 3 import mk.ukim.finki.busngo.model.entities.Bilet; 4 import mk.ukim.finki.busngo.model.entities.Patnik; 4 5 import mk.ukim.finki.busngo.model.enums.BILET_STATUS; 5 6 … … 13 14 14 15 Bilet buy(Long tipbilet, LocalDateTime now, BILET_STATUS biletStatus, String name); 16 17 List<Bilet> findAllByPatnikEmail(String email); 18 Bilet findBybIdAndPatnikEmail(Long bId, String email); 19 20 Bilet activate(Long bId); 21 Bilet findById(Long bId); 22 Bilet finish(Long bId); 23 24 boolean checkExpiration(Long bId); 25 // void encode(); 15 26 }
Note:
See TracChangeset
for help on using the changeset viewer.