コード例 #1
0
 public bool updateUser(int userId, string username, string password, string email, int userlevel)
 {
     try
     {
         tabUserAdapter.UpdateUserByUserIDForUsernamePasswordUserlevelUserEmail(username, password, userlevel, email, userId);
         return(true);
     }
     catch (Exception e)
     {
         throw e;
     }
 }