Merge branch 'master' of https://xp-dev.com/git/RRRRHHHH_Code
[RRRRHHHH_Code] / ruralHouses / src / businessLogic / LoginManagerInterface.java
1 package businessLogic;
2
3 import domain.*;
4
5 public interface LoginManagerInterface {
6         
7         public Owner checkCredentials(String usr, String pwd);
8         
9         
10         
11 }