Exemplo n.º 1
0
 public TodoList MapperToEntity(TodoListDTO todoListDTO) => new TodoList(todoListDTO.Id, todoListDTO.Name, todoListDTO.Done, _categoryMapper.MapperToEntity(todoListDTO.Category));
Exemplo n.º 2
0
        public CategoryDTO Add(CategoryDTO categoryDTO)
        {
            var category = _categoryMapper.MapperToEntity(categoryDTO);

            return(_categoryMapper.MapperToDTO(_categoryService.Add(category)));
        }