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

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

            return(dao.FindByUser(customermodel));
        }
Esempio n. 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));
 }