Exemple #1
0
 public PollManager(IPollDal pollDal,
                    IYesNoAnswerDal yesNoAnswerDal,
                    IYesNoQuestionDal yesNoQuestionDal, IUserDal userDal)
 {
     this.pollDal          = pollDal;
     this.yesNoQuestionDal = yesNoQuestionDal;
     this.userDal          = userDal;
     this.yesNoAnswerDal   = yesNoAnswerDal;
 }
Exemple #2
0
 public UserSurveysManager(IUserSurveysDal userSurveysDal,
                           IYesNoAnswerDal yesNoAnswerDal)
 {
     this.userSurveysDal = userSurveysDal;
     this.yesNoAnswerDal = yesNoAnswerDal;
 }
Exemple #3
0
 public YesNoAnswerManager(IYesNoAnswerDal yesNoAnswerDal)
 {
     this.yesNoAnswerDal = yesNoAnswerDal;
 }