source: src/main/java/mk/ukim/finki/busngo/service/PatnikService.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: 259 bytes
Line 
1package mk.ukim.finki.busngo.service;
2
3import mk.ukim.finki.busngo.model.entities.Bilet;
4import mk.ukim.finki.busngo.model.entities.Patnik;
5
6import java.util.List;
7
8public interface PatnikService {
9 List<Patnik> listAll();
10 Patnik findById(Long id);
11
12}
Note: See TracBrowser for help on using the repository browser.