コード例 #1
0
        public async Task Update(ProductCategoryModel model)
        {
            await _service.Update(model);

            return;
        }
コード例 #2
0
 public async Task <int> Update(ProductCategoryModel model)
 {
     return(await _service.Update(model.ToProductCategory()));
 }