Ejemplo n.º 1
0
 public AdminController(IUserAccountPresentationService userAccountPresentationService, ITodoPresentationService todoPresintationService)
 {
     this.todoPresintationService        = todoPresintationService;
     this.userAccountPresentationService = userAccountPresentationService;
 }
Ejemplo n.º 2
0
 public HomeController(ITodoPresentationService todoService, ITodoErrorPresentationService todoErrorService)
 {
     this.todoService      = todoService;
     this.todoErrorService = todoErrorService;
 }