public async Task <HttpResponseMessage> Post(UnwrapModel <ContainerSaveModel> model)
        {
            if (model?.Data != null)
            {
                await containerService.CreateAsync(model.Data);

                return(Success());
            }

            return(Failure("Невозможно добавить пустой элемент"));
        }