コード例 #1
0
        public async Task <IActionResult> addProductCategory([FromBody] AddProductCategoryViewModel addProductCategoryViewModel)
        {
            var respond = await _productCategoryService.AddProductAsync(addProductCategoryViewModel);

            if (respond.StatusCode == System.Net.HttpStatusCode.OK)
            {
                return(Ok(respond.data));
            }
            else
            {
                return(BadRequest(new { Message = respond.Message }));
            }
        }