Exemplo n.º 1
0
 public UpdateApplicationCodeFeatureStateCommandHandler(ICloudTableProvider tableProvider, AzureManagementSettings settings,
                                                        IEnumerable <IEventHandler <IApplicationCodeFeatureStateUpdated> > eventHandlers)
 {
     _tableProvider = tableProvider;
     _settings      = settings;
     _eventHandlers = eventHandlers;
 }
Exemplo n.º 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;
 }
Exemplo n.º 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;
 }
Exemplo n.º 7
0
 public ListOrganizationsQueryHandler(ICloudTableProvider tableProvider, AzureManagementSettings settings)
 {
     _tableProvider = tableProvider;
     _settings      = settings;
 }
Exemplo n.º 8
0
 public CreateOrganizationCommandHandler(ICloudTableProvider tableProvider, AzureManagementSettings settings)
 {
     _tableProvider = tableProvider;
     _settings      = settings;
 }