Exemplo n.º 1
0
 public User(string login, string password, UserType userType)
 {
     this.Id = new Guid();
     this.Login = login;
     this.Password = password;
     this.UserType = userType;
 }
Exemplo n.º 2
0
 public User(Guid id, string login, string password, UserType userType)
     : this(login, password, userType)
 {
     this.Id = id;
 }