Пример #1
0
        public async Task <IActionResult> Delete(int id)
        {
            DeleteProductRequestResponse result = await _ProductRequestAppService.deleteProductRequest(id);

            if (result.Success)
            {
                return(Ok(result));
            }
            return(NotFound(result));
        }
Пример #2
0
        public Task <DeleteProductRequestResponse> deleteProductRequest(int id)
        {
            DeleteProductRequestCommand command = new DeleteProductRequestCommand
                                                  (
                id
                                                  );
            Task <object> ProductRequest          = (Task <object>)Bus.SendCommand(command);
            DeleteProductRequestResponse response = new DeleteProductRequestResponse();

            response = Common <DeleteProductRequestResponse> .checkHasNotification(_notifications, response);

            return(Task.FromResult(response));
        }