Exemple #1
0
 public UpdateApplicationCodeFeatureStateCommandHandler(ICloudTableProvider tableProvider, AzureManagementSettings settings,
                                                        IEnumerable <IEventHandler <IApplicationCodeFeatureStateUpdated> > eventHandlers)
 {
     _tableProvider = tableProvider;
     _settings      = settings;
     _eventHandlers = eventHandlers;
 }
Exemple #2
0
 public ListApplicationKeysQueryHandler(ICloudTableProvider tableProvider, AzureManagementSettings settings,
                                        IQueryHandler <GetApplication, UserOrganizationApplication> getApplication)
 {
     _tableProvider  = tableProvider;
     _settings       = settings;
     _getApplication = getApplication;
 }
 public CreateApplicationCommandHandler(ICloudTableProvider tableProvider, AzureManagementSettings settings,
                                        IQueryHandler <GetOrganization, Organization> organizationQueryHandler)
 {
     _tableProvider            = tableProvider;
     _organizationQueryHandler = organizationQueryHandler;
     _settings = settings;
 }
Exemple #4
0
 public RegisterCodeFeatureCommandHandler(ICloudTableProvider tableProvider, AzureManagementSettings settings)
 {
     _tableProvider = tableProvider;
     _settings      = settings;
 }
 public GetApplicationQueryHandler(ICloudTableProvider tableProvider, AzureManagementSettings settings)
 {
     _tableProvider = tableProvider;
     _settings      = settings;
 }
 public ListApplicationCodeFeaturesQueryHandler(ICloudTableProvider tableProvider, AzureManagementSettings settings)
 {
     _tableProvider = tableProvider;
     _settings      = settings;
 }
Exemple #7
0
 public ListOrganizationsQueryHandler(ICloudTableProvider tableProvider, AzureManagementSettings settings)
 {
     _tableProvider = tableProvider;
     _settings      = settings;
 }
Exemple #8
0
 public CreateOrganizationCommandHandler(ICloudTableProvider tableProvider, AzureManagementSettings settings)
 {
     _tableProvider = tableProvider;
     _settings      = settings;
 }