コード例 #1
0
 public bool InsertUser(UserDetail user)
 {
     if (user != null)
     {
         bool userstatus = dBContext.InsertUser(user);
         return(true);
     }
     else
     {
         throw new UsersException();
     }
 }