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