コード例 #1
0
ファイル: User.cs プロジェクト: bryce-harrington/T-Notes
 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);
     }
 }