source: src/main/java/com/example/baza/service/AuthenticationService.java@ bc39b15

Last change on this file since bc39b15 was ed20c2c, checked in by HumaSejdini <humasejdini12@…>, 2 years ago

Initial commit

  • Property mode set to 100644
File size: 265 bytes
Line 
1package com.example.baza.service;
2
3
4
5import com.example.baza.model.Authentication;
6
7import java.util.List;
8import java.util.Optional;
9
10public interface AuthenticationService {
11 List<Authentication> listAll();
12 Optional<Authentication> findById(Integer id);
13}
Note: See TracBrowser for help on using the repository browser.