Exemplo n.º 1
0
 public User(UserId userId, string ident, UserCategoryEnum category)
     : this(new[] {userId}, ident, category)
 {
 }
Exemplo n.º 2
0
 public User(UserId userId, string ident, UserCategoryEnum category) : this(new[] { userId }, ident, category)
 {
 }
Exemplo n.º 3
0
 public User(UserId[] userId, string ident, UserCategoryEnum category)
     : this(userId)
 {
     this.ident = string.IsNullOrEmpty(ident) ? "0" : ident;
     this.category = category;
 }
Exemplo n.º 4
0
 public User(UserId[] userId, string ident, UserCategoryEnum category) : this(userId)
 {
     this.ident    = string.IsNullOrEmpty(ident) ? "0" : ident;
     this.category = category;
 }