Exemple #1
0
 public TaskMapper(ITodoListMapper todoListMapper, IUserMapper userMapper)
 {
     _todoListMapper = todoListMapper;
     _userMapper     = userMapper;
 }
Exemple #2
0
 public TodoListApplicationService(ITodoListService todoListService, ITodoListMapper todoListMapper, ICategoryService categoryService)
 {
     _todoListService = todoListService;
     _todoListMapper  = todoListMapper;
     _categoryService = categoryService;
 }