public async Task AddAsync(DALCategoryDTO categoryDTO) { var category = CategoryMapper.FromDAL(categoryDTO); await RepoDbSet.AddAsync(category); }