package businessLogic; import domain.Account; public interface LoginManagerInterface { public Account checkCredentials(String usr, String pwd); }