public async Task <IActionResult> PutConsumable(Guid id, ConsumableForUpdateDto consumableForUpdate)
        {
            var consumable = await _consumableService.UpdateAsync(id, consumableForUpdate);

            return(consumable ? NoContent() : NotFound());
        }