public bool Authenticate(UserModel user) { return(service.FindByUser(user)); }
public bool Authenticate(LoginViewModel user) { return(daoService.FindByUser(user)); }
public bool Authenticate(UserModel user) { SecurityDAO service = new SecurityDAO(); return(service.FindByUser(user)); }
public bool Authenticate(UserAcc user) { return(daoService.FindByUser(user)); }
public bool Authenticate(UserModel user) { return(securityDAO.FindByUser(user)); }
public bool Authentication(Customer customermodel) { SecurityDAO dao = new SecurityDAO(); return(dao.FindByUser(customermodel)); }
public bool Authenticate(UserModel user) { // Goes to the DB and if it finds the user it returns a true value return(daoService.FindByUser(user)); }