Esempio n. 1
0
 public TodoListsController(ITodoListAppService todoListService, ITodoListRepository todoListRepository)
 {
     _todoListAppService = todoListService;
     _todoListRepository = todoListRepository;
 }
 public TodoListController(ITodoListAppService todoListAppService)
 {
     _todoListAppService = todoListAppService;
 }
Esempio n. 3
0
 public HomeController(ITodoListAppService todoListAppService, ITodoAppService todoAppService)
 {
     _todoListAppService = todoListAppService;
     _todoAppService     = todoAppService;
 }