Example #1
0
 public bool Authenticate(UserModel user)
 {
     return(service.FindByUser(user));
 }
Example #2
0
 public bool Authenticate(LoginViewModel user)
 {
     return(daoService.FindByUser(user));
 }
Example #3
0
        public bool Authenticate(UserModel user)
        {
            SecurityDAO service = new SecurityDAO();

            return(service.FindByUser(user));
        }
Example #4
0
 public bool Authenticate(UserAcc user)
 {
     return(daoService.FindByUser(user));
 }
Example #5
0
 public bool Authenticate(UserModel user)
 {
     return(securityDAO.FindByUser(user));
 }
Example #6
0
        public bool Authentication(Customer customermodel)
        {
            SecurityDAO dao = new SecurityDAO();

            return(dao.FindByUser(customermodel));
        }
Example #7
0
 public bool Authenticate(UserModel user)
 {
     // Goes to the DB and if it finds the user it returns a true value
     return(daoService.FindByUser(user));
 }