Exemple #1
0
        public static AccountInfo AuthenticateUser(AccountInfo account)
        {
            if (account == null)
            {
                return(null);
            }

            return(AuthenticateDal.AuthenticateUser(account));
        }
Exemple #2
0
 public static int RegisterAccount(AccountInfo registerAccount)
 {
     return(AuthenticateDal.RegisterAccount(registerAccount));
 }