示例#1
0
 public QuestionController(QuestionService questions, QuestionRouterService router, TestService tests)
 {
     this.router    = router;
     this.questions = questions;
     this.tests     = tests;
 }
示例#2
0
 public TestController(TestService questions, QuestionRouterService router)
 {
     this.tests  = questions;
     this.router = router;
 }