public Task <InventoryHistoryDto> UpdateAsync(Guid id, CreateUpdateInventoryHistoryDto input)
 {
     return(_inventoryHistoryAppService.UpdateAsync(id, input));
 }
 public Task <InventoryHistoryDto> CreateAsync(CreateUpdateInventoryHistoryDto input)
 {
     return(_inventoryHistoryAppService.CreateAsync(input));
 }