Exemplo n.º 1
0
 public UserModel(int id, string email, string password, RegistrantModel registrant)
 {
     Id         = id;
     Email      = email;
     Password   = password;
     Registrant = registrant;
 }
Exemplo n.º 2
0
 public UserModel(int id, string email, string password, RegistrantModel registrant, bool isAdmin = false)
 {
     Id         = id;
     Email      = email;
     Password   = password;
     Registrant = registrant;
     IsAdmin    = isAdmin;
 }