source: src/main/java/com/example/service/CateringService.java@ a51a591

Last change on this file since a51a591 was a51a591, checked in by colovik <j.colovik@…>, 14 months ago

final

  • Property mode set to 100644
File size: 195 bytes
Line 
1package com.example.service;
2
3import com.example.model.Catering;
4
5import java.util.List;
6
7public interface CateringService {
8 List<Catering> findAll();
9 Catering findByName(String name);
10}
Note: See TracBrowser for help on using the repository browser.