public AdvSurveysController(ISurveyService surveyService,
                             IDipendentiService dipendentiService,
                             LogWriter logger
                             )
 {
     this.surveyService = surveyService;
     this.logger        = logger;
 }
        public AdvSurveysController(ISurveyService surveyService,
            IDipendentiService dipendentiService,
            LogWriter logger
            )
        {
            this.surveyService = surveyService;
            this.logger = logger;

        }
Example #3
0
        public SurveyService(IRepository <Survey> reposSurvey,
                             IRepository <SurveySession> reposSurveySession,
                             IRepository <SubQuestion> reposSubQuestion,
                             //IRepository<ResponsabiliDipendenti> reposResponsabiliDipendenti,
                             IDipendentiService dipendentiService,
                             IUserService userService,
                             UnitOfWork unityOfWork)
        {
            this.reposSurvey = reposSurvey;
            //this.reposAnswer = reposAnswer;
            this.reposSurveySession = reposSurveySession;
            this.reposSubQuestion   = reposSubQuestion;
            //this.reposResponsabiliDipendenti = reposResponsabiliDipendenti;
            this.userService = userService;
            this.unityOfWork = unityOfWork;


            this.dipendentiService = dipendentiService;
        }
Example #4
0
        public SurveyService(IRepository<Survey> reposSurvey,
            IRepository<SurveySession> reposSurveySession,
            IRepository<SubQuestion> reposSubQuestion,
            //IRepository<ResponsabiliDipendenti> reposResponsabiliDipendenti,
            IDipendentiService dipendentiService,
            IUserService userService,
            UnitOfWork unityOfWork)
        {
            this.reposSurvey = reposSurvey;
            //this.reposAnswer = reposAnswer;
            this.reposSurveySession = reposSurveySession;
            this.reposSubQuestion = reposSubQuestion;
            //this.reposResponsabiliDipendenti = reposResponsabiliDipendenti;
            this.userService = userService;
            this.unityOfWork = unityOfWork;


            this.dipendentiService = dipendentiService;
        }