public TodoListsController(ITodoListAppService todoListService, ITodoListRepository todoListRepository) { _todoListAppService = todoListService; _todoListRepository = todoListRepository; }
public TodoListController(ITodoListAppService todoListAppService) { _todoListAppService = todoListAppService; }
public HomeController(ITodoListAppService todoListAppService, ITodoAppService todoAppService) { _todoListAppService = todoListAppService; _todoAppService = todoAppService; }