コード例 #1
0
ファイル: Product.cs プロジェクト: steffdimitrov/Telerik
 protected Product(string name, string brand, decimal price, Common.GenderType gender)
 {
     this.Name   = name;
     this.Brand  = brand;
     this.Price  = price;
     this.Gender = gender;
 }
コード例 #2
0
 public Toothpaste(string name, string brand, decimal price, Common.GenderType gender, IList <string> ingredientsList)
     : base(name, brand, price, gender)
 {
     this.IngredientsList = ingredientsList;
 }