source: src/main/java/mk/ukim/finki/busngo/service/LinijaService.java

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

All 3 main use cases implemented.

  1. Starting a commute
  2. Writing a ticket
  3. Starting an instance of a Bus Line
  • Property mode set to 100644
File size: 211 bytes
Line 
1package mk.ukim.finki.busngo.service;
2
3import mk.ukim.finki.busngo.model.entities.Linija;
4
5import java.util.List;
6
7public interface LinijaService {
8 List<Linija> findAll();
9
10 Linija findById(Long liId);
11}
Note: See TracBrowser for help on using the repository browser.