예제 #1
0
 public async Task <bool> InsertAsync([FromBody] CategoryDetailDto model)
 {
     model.UserId = UserIdentity.UserId.ToString();
     return(await categoryService.InsertAsync(model));
 }
 public async Task <bool> InsertAsync([FromBody] CategoryDetailDto model)
 {
     return(await categoryService.InsertAsync(model));
 }