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