public TodoList MapperToEntity(TodoListDTO todoListDTO) => new TodoList(todoListDTO.Id, todoListDTO.Name, todoListDTO.Done, _categoryMapper.MapperToEntity(todoListDTO.Category));
public CategoryDTO Add(CategoryDTO categoryDTO) { var category = _categoryMapper.MapperToEntity(categoryDTO); return(_categoryMapper.MapperToDTO(_categoryService.Add(category))); }