Exemplo n.º 1
0
 public bool removeUser(int uid, string password)
 {
     //takes in username and password for user to remove
     //passes these to an interface function along with userID
     if (connection.removeUser(uid, password))
     {
         return(true);
     }
     else
     {
         return(false);
     }
 }