Exemple #1
0
 public Macbook(double price, ShoppingCart.Category.Category category, string title = "Macbook") : base(title, price, category)
 {
 }
Exemple #2
0
 public Iphone(double price, ShoppingCart.Category.Category category, string title = "Iphone") : base(title, price, category)
 {
 }
Exemple #3
0
 public Product(string title, double price, ShoppingCart.Category.Category category)
 {
     _title    = title;
     _price    = price;
     _category = category;
 }