예제 #1
0
 public Product(string name,int price,ProductDiscount discount)
     : base()
 {
     this.Name = name;
     this.Price = price;
     this.Discount = discount;
 }
예제 #2
0
 public Product(string name, int price, ProductDiscount discount) : base()
 {
     this.Name     = name;
     this.Price    = price;
     this.Discount = discount;
 }