Пример #1
0
 public ToDoListController(IToDoListAppQuery toDoListAppQuery, IToDoListAppService toDoListAppService)
 {
     _toDoListAppQuery   = toDoListAppQuery;
     _toDoListAppService = toDoListAppService;
 }
Пример #2
0
 public ToDoListAppService_IntegrationTests()
 {
     _todoAppService = Resolve <IToDoListAppService>();
 }