Esempio n. 1
0
 public Top(Sleeves sleeves, TNecklineType necklinetype, string name, string cloth, int length, double price, TColor color) : base(name, cloth, length, price, color)
 {
     this.sleeves      = sleeves;
     this.NecklineType = necklinetype;
     this.Category     = TCategorys.Top;
 }
Esempio n. 2
0
 public Outwear(bool isbelt, TFastenerType fastenertype, TCollarType collartype, Sleeves sleeves, TNecklineType necklinetype, string name, string cloth, int length, double price, TColor color) : base(sleeves, necklinetype, name, cloth, length, price, color)
 {
     this.isBelt       = isbelt;
     this.FastenerType = fastenertype;
     this.CollarType   = collartype;
     this.Category     = TCategorys.Outwear;
 }