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