source: src/main/java/it/finki/tinki/service/AccountService.java@ 504c3ef

Last change on this file since 504c3ef was 29c0ed0, checked in by Vzdra <vladko.zdravkovski@…>, 3 years ago

added initial login functionality

  • Property mode set to 100644
File size: 259 bytes
Line 
1package it.finki.tinki.service;
2
3import it.finki.tinki.model.Users.Account;
4import it.finki.tinki.model.enumerator.AccountType;
5
6import java.util.Map;
7
8public interface AccountService {
9 Account findUser(String email, String password, AccountType type);
10}
Note: See TracBrowser for help on using the repository browser.