Пример #1
0
 public User(IUserProps props)
 {
     this.username = props.username;
     this.id       = props.id;
 }
Пример #2
0
 public IUser create(IUserProps props)
 {
     return(new User(props));
 }