public InventoryControlQueries(IInventoryControlRepository inventoryControlRepository)
 {
     _inventoryControlRepository = inventoryControlRepository;
 }
 public InventoryControlHandler(IInventoryControlRepository inventoryControlRepository, IProductRepository productRepository)
 {
     _inventoryControlRepository = inventoryControlRepository;
     _productRepository          = productRepository;
 }