コード例 #1
0
 public TodoList MapperToEntity(TodoListDTO todoListDTO) => new TodoList(todoListDTO.Id, todoListDTO.Name, todoListDTO.Done, _categoryMapper.MapperToEntity(todoListDTO.Category));
コード例 #2
0
        public CategoryDTO Add(CategoryDTO categoryDTO)
        {
            var category = _categoryMapper.MapperToEntity(categoryDTO);

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