Ejemplo n.º 1
0
 public QuestionService(
     IQuestionRepo questionRepo,
     ITestQuesRepo testQuesRepo
     )
 {
     _questionRepo = questionRepo;
     _testQuesRepo = testQuesRepo;
 }
Ejemplo n.º 2
0
 public TestService(
     ITestRepo testRepo,
     IResponseRepo responseRepo,
     IQuestionRepo questionRepo,
     ITestQuesRepo testQuesRepo
     )
 {
     _testRepo     = testRepo;
     _responseRepo = responseRepo;
     _questionRepo = questionRepo;
     _testQuesRepo = testQuesRepo;
 }
Ejemplo n.º 3
0
 public TestQuesService(ITestQuesRepo testQuesRepo)
 {
     _testQuesRepo = testQuesRepo;
 }