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