Exemple #1
0
 public ToDoListController(IListToDoService listToDoService, IMapper mapper)
 {
     _mapper          = mapper;
     _listToDoService = listToDoService;
 }
 public ListToDoController(IListToDoService listToDoService)
 {
     this.listToDoService = listToDoService;
 }
Exemple #3
0
 public ListToDoController(IListToDoService toDoService)
 {
     this.toDoService = toDoService;
 }