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