Example #1
0
 public ShopDishController(IBoughtItemsRepository <Dish> boughtItemsRepository) : base(boughtItemsRepository)
 {
 }
Example #2
0
 public ShopFruitController(IBoughtItemsRepository <Fruit> boughtItemsRepository) : base(boughtItemsRepository)
 {
 }
Example #3
0
 public ShopItemController(IBoughtItemsRepository <T> boughtItemsRepository)
 {
     _boughtItemsRepository = boughtItemsRepository;
 }
Example #4
0
 public ShopVegetableController(IBoughtItemsRepository <Vegetable> boughtItemsRepository) : base(boughtItemsRepository)
 {
 }