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; }
public AbstractFootwearLeather(uint size, FootwearTypePerson typePerson, FootwearTypeSeason typeSeason) : base(size, "Shoes", FootwearTypeMaterial.Leather, typePerson, typeSeason) { }