public SurveysController(
     ISurveyStore surveyStore,
     ISurveyAnswerStore surveyAnswerStore,
     ISurveyAnswersSummaryStore surveyAnswersSummaryStore,
     ITenantStore tenantStore,
     ISurveyTransferStore surveyTransferStore)
     : base(tenantStore)
 {
     this.surveyStore               = surveyStore;
     this.surveyAnswerStore         = surveyAnswerStore;
     this.surveyAnswersSummaryStore = surveyAnswersSummaryStore;
     this.surveyTransferStore       = surveyTransferStore;
 }
Ejemplo n.º 2
0
 public SurveysController(
     ISurveyStore surveyStore,
     ISurveyAnswerStore surveyAnswerStore,
     ISurveyAnswersSummaryStore surveyAnswersSummaryStore,
     ITenantStore tenantStore,
     ISurveyTransferStore surveyTransferStore,
     IUDFDictionary udfDictionary)
     : base(tenantStore)
 {
     this.surveyStore = surveyStore;
     this.surveyAnswerStore = surveyAnswerStore;
     this.surveyAnswersSummaryStore = surveyAnswersSummaryStore;
     this.surveyTransferStore = surveyTransferStore;
     this.udfDictionary = udfDictionary;
 }
Ejemplo n.º 3
0
 public SurveysController(
     ISurveyStore surveyStore,
     ISurveyAnswerStore surveyAnswerStore,
     ISurveyAnswersSummaryStore surveyAnswersSummaryStore,
     ITenantStore tenantStore,
     ISurveyTransferStore surveyTransferStore,
     IUDFDictionary udfDictionary)
     : base(tenantStore)
 {
     this.surveyStore               = surveyStore;
     this.surveyAnswerStore         = surveyAnswerStore;
     this.surveyAnswersSummaryStore = surveyAnswersSummaryStore;
     this.surveyTransferStore       = surveyTransferStore;
     this.udfDictionary             = udfDictionary;
 }