Пример #1
0
 protected AbstractFootwear(uint size, string name, FootwearTypeMaterial typeMaterial, FootwearTypePerson personType, FootwearTypeSeason seasonType)
 {
     this.Name         = name;
     this.Size         = size;
     this.TypeMaterial = typeMaterial;
     this.PersonType   = personType;
     this.SeasonType   = seasonType;
 }
Пример #2
0
 public AbstractFootwearLeather(uint size, FootwearTypePerson typePerson, FootwearTypeSeason typeSeason) :
     base(size, "Shoes", FootwearTypeMaterial.Leather, typePerson, typeSeason)
 {
 }