Beispiel #1
0
 public InventoryMenuService(ISlackWebApi slack, IUserRepository userRepository, IInventoryCommands inventoryCommands)
 {
     _slack             = slack;
     _userRepository    = userRepository;
     _inventoryCommands = inventoryCommands;
 }
Beispiel #2
0
 public InventoryController(IInventoryCommands inventoryCommands)
 {
     _inventoryCommands = inventoryCommands;
 }
 public InteractionsController(IShopService shopService, IInventoryCommands inventoryCommands)
 {
     _shopService       = shopService;
     _inventoryCommands = inventoryCommands;
 }