Пример #1
0
 public AccountController(ITenantStore tenantStore, IUDFDictionary udfDictionary)
     : base(tenantStore)
 {
     this.udfDictionary   = udfDictionary;
     this.extendableTypes = new Dictionary <string, Type>()
     {
         { "SurveyRow", typeof(SurveyRow) }
     };
 }
Пример #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;
 }
Пример #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;
 }
Пример #4
0
 public AccountController(ITenantStore tenantStore, IUDFDictionary udfDictionary)
     : base(tenantStore)
 {
     this.udfDictionary = udfDictionary;
     this.extendableTypes = new Dictionary<string, Type>() { { "SurveyRow", typeof(SurveyRow) } };
 }
Пример #5
0
 public SurveyRowRWStrategy(IUDFDictionary udfDictionary)
     : base()
 {
     this.UDFDictionary = udfDictionary;
 }