Exemple #1
0
 public LoginUser(Model.Person person)
 {
     this.UNID       = person.UNID;
     this.Account    = person.Account;
     this.Name       = person.Name;
     this.ComId      = person.ComId;
     this.ShopId     = person.ShopId;
     this.IsChildren = person.IsChildren == 1 ? true : false;
 }
Exemple #2
0
 public Superman(Person Person, Ability Ability)
 {
     this.Person = Person;
     this.Ability = Ability;
 }