Exemplo n.º 1
0
 public PollManager(IPollDal pollDal,
                    IYesNoAnswerDal yesNoAnswerDal,
                    IYesNoQuestionDal yesNoQuestionDal, IUserDal userDal)
 {
     this.pollDal          = pollDal;
     this.yesNoQuestionDal = yesNoQuestionDal;
     this.userDal          = userDal;
     this.yesNoAnswerDal   = yesNoAnswerDal;
 }
Exemplo n.º 2
0
 public YesNoQuestionManager(IYesNoQuestionDal yesNoQuestionDal)
 {
     this.yesNoQuestionDal = yesNoQuestionDal;
 }