예제 #1
0
 public async Task<IResult> UpdateAsync(Category category)
 {
     await _categoryDao.UpdateAsync(category);
     return new SuccessResult(true, ResultMessages.CategoryUpdated);
 }