public SurveyManagementService(StatelessServiceContext context,
                                AzureTableFactory <SurveyInformationRow> surveyInformationTableFactory,
                                AzureBlobContainerFactory <Models.Survey> surveyContainerFactory)
     : base(context)
 {
     _surveyInformationTableFactory = surveyInformationTableFactory;
     _surveyContainerFactory        = surveyContainerFactory;
 }
Ejemplo n.º 2
0
 public SurveysController(AzureTableFactory <SurveyInformationRow> surveyInformationTableFactory,
                          AzureBlobContainerFactory <Models.Survey> surveyContainerFactory)
 {
     _surveyInformationTableFactory = surveyInformationTableFactory;
     _surveyContainerFactory        = surveyContainerFactory;
 }