Booking confirmation and e-mail service added. Some bugs to be solved.
[RRRRHHHH_Code] / ruralHouses / src / businessLogic / LoginManagerInterface.java
1 package businessLogic;
2
3 import domain.Account;
4
5 public interface LoginManagerInterface {
6         
7         public Account checkCredentials(String usr, String pwd);
8
9         
10         
11         
12 }