public PollManager(IPollDal pollDal, IYesNoAnswerDal yesNoAnswerDal, IYesNoQuestionDal yesNoQuestionDal, IUserDal userDal) { this.pollDal = pollDal; this.yesNoQuestionDal = yesNoQuestionDal; this.userDal = userDal; this.yesNoAnswerDal = yesNoAnswerDal; }
public UserSurveysManager(IUserSurveysDal userSurveysDal, IYesNoAnswerDal yesNoAnswerDal) { this.userSurveysDal = userSurveysDal; this.yesNoAnswerDal = yesNoAnswerDal; }
public YesNoAnswerManager(IYesNoAnswerDal yesNoAnswerDal) { this.yesNoAnswerDal = yesNoAnswerDal; }