public RespondentController( IRespondentService respondentService, ILogger <RespondentController> logger) { _respondentService = respondentService; _logger = logger; }
public SurveyController(IRespondentService respondentService, ITechnologyService technologyService, IMapper mapper) { this.respondentService = respondentService; this.technologyService = technologyService; this.mapper = mapper; }
public PortalController( ISurveySectionService surveySectionService, IPageService pageService, IQuestionService questionService, IAnswerService answerService, IRespondentService respondentService, ISurveySectionRespondentService surveySectionRespondentService ) { _surveySectionService = surveySectionService; _pageService = pageService; _questionService = questionService; _answerService = answerService; _respondentService = respondentService; _surveySectionRespondentService = surveySectionRespondentService; }
public RespondentsController(IRespondentService respondentService, IRespondentTechnologyService respondentTechnologyService, IMapper mapper) { this.respondentService = respondentService; this.repondentTechnologyService = respondentTechnologyService; this.mapper = mapper; }