示例#1
0
        public IActionResult RejectAaddProduct(AddProductDto addProductDto)
        {
            var result = _addProductService.Reject(addProductDto.AddProductId);

            if (result.Success)
            {
                return(Ok(result));
            }
            return(BadRequest(result));
        }