Beispiel #1
0
 public YesNoAnswersController(IYesNoAnswerService yesNoAnswerService,
                               IPollService pollService,
                               IUserService userService,
                               IUserSurveysService userSurveysService,
                               IYesNoQuestionService yesNoQuestionService)
 {
     this.yesNoAnswerService   = yesNoAnswerService;
     this.pollService          = pollService;
     this.userSurveysService   = userSurveysService;
     this.yesNoQuestionService = yesNoQuestionService;
     this.userService          = userService;
 }
 public YesNoQuestionsController(IYesNoQuestionService yesNoQuestionService, IPollService pollService)
 {
     this.yesNoQuestionService = yesNoQuestionService;
     this.pollService          = pollService;
 }