コード例 #1
0
 public bool Signup(User signupUser)
 {
     return(!_dao.CheckUserExist(signupUser) && _dao.AddNewUser(signupUser));
 }