public SurveyManagementService(StatelessServiceContext context, AzureTableFactory <SurveyInformationRow> surveyInformationTableFactory, AzureBlobContainerFactory <Models.Survey> surveyContainerFactory) : base(context) { _surveyInformationTableFactory = surveyInformationTableFactory; _surveyContainerFactory = surveyContainerFactory; }
public SurveyAnswersController( AzureBlobContainerFactory <ApiModels.SurveyAnswer> surveyAnswerContainerFactory, AzureBlobContainerFactory <List <string> > surveyAnswerListContainerFactory, ISurveyAnalysisService surveyAnalysisService) { this.surveyAnswerContainerFactory = surveyAnswerContainerFactory; this.surveyAnswerListContainerFactory = surveyAnswerListContainerFactory; this.surveyAnalysisService = surveyAnalysisService; }
public SurveyAnswerService(StatelessServiceContext context, AzureBlobContainerFactory <Models.SurveyAnswer> surveyAnswerContainerFactory, AzureBlobContainerFactory <List <string> > surveyAnswerListContainerFactory, ISurveyAnalysisService surveyAnalysisService) : base(context) { this.surveyAnswerContainerFactory = surveyAnswerContainerFactory; this.surveyAnswerListContainerFactory = surveyAnswerListContainerFactory; this.surveyAnalysisService = surveyAnalysisService; }
public SurveyResponsesController( AzureBlobContainerFactory <ApiModels.SurveyAnswer> surveyAnswerContainerFactory, AzureBlobContainerFactory <List <string> > surveyAnswerListContainerFactory, ISurveyAnalysisService surveyAnalysisService, IReliableStateManager stateManager) { this.surveyAnswerContainerFactory = surveyAnswerContainerFactory; this.surveyAnswerListContainerFactory = surveyAnswerListContainerFactory; this.surveyAnalysisService = surveyAnalysisService; _stateManager = stateManager; }
public SurveysController(AzureTableFactory <SurveyInformationRow> surveyInformationTableFactory, AzureBlobContainerFactory <Models.Survey> surveyContainerFactory) { _surveyInformationTableFactory = surveyInformationTableFactory; _surveyContainerFactory = surveyContainerFactory; }