public Category CategoryDtoToCategory(CategoryDTO categoryDto) { return Mapper.Map<CategoryDTO, Category>(categoryDto); }
public void Edit(CategoryDTO categoryDto) { var category = CategoryDtoToCategory(categoryDto); _repository.Edit(category); }
public void Add(CategoryDTO categoryDto) { var category = CategoryDtoToCategory(categoryDto); _repository.Add(category); }