private bool DebitStorageRemainders(List <ProductOperation> items)
        {
            var result = _storageRemainderService.DebitStorageRemainders(items);

            if (result.Count == 0 || result[0].Id == 0)
            {
                throw new Exception("Не удалось обновить остатки по складам");
            }
            return(true);
        }