Пример #1
0
 public Task <InventoryDto> UpdateAsync(Guid id, CreateUpdateInventoryDto input)
 {
     return(_inventoryAppService.UpdateAsync(id, input));
 }
Пример #2
0
 public Task <InventoryDto> CreateAsync(CreateUpdateInventoryDto input)
 {
     return(_inventoryAppService.CreateAsync(input));
 }