コード例 #1
0
ファイル: AdminController.cs プロジェクト: AlexPrudnikov/Todo
 public AdminController(IUserAccountPresentationService userAccountPresentationService, ITodoPresentationService todoPresintationService)
 {
     this.todoPresintationService        = todoPresintationService;
     this.userAccountPresentationService = userAccountPresentationService;
 }
コード例 #2
0
ファイル: HomeController.cs プロジェクト: AlexPrudnikov/Todo
 public HomeController(ITodoPresentationService todoService, ITodoErrorPresentationService todoErrorService)
 {
     this.todoService      = todoService;
     this.todoErrorService = todoErrorService;
 }