Exemplo n.º 1
0
 public bool ValidateUserAccount(string email, string username)
 {
     DBConnectionClass db = new DBConnectionClass();
     {
         if (db.DoesUserExist(email, username))
         {
             return(true);
         }
         else
         {
             return(false);
         }
     }
 }