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