Beispiel #1
0
 public ViewController(StatefulControllerDependencies dependencies,
                       Lazy <ViewsBackend> viewsBackendLazy,
                       Lazy <ViewsExportImport> viewExportLazy) : base(dependencies)
 {
     _viewsBackendLazy = viewsBackendLazy;
     _viewExportLazy   = viewExportLazy;
 }
Beispiel #2
0
 public AppPartsController(StatefulControllerDependencies dependencies,
                           Lazy <ExportContent> exportContentLazy,
                           Lazy <ImportContent> importContentLazy) : base(dependencies)
 {
     _exportContentLazy = exportContentLazy;
     _importContentLazy = importContentLazy;
 }
Beispiel #3
0
 public TypeController(StatefulControllerDependencies dependencies,
                       Lazy <ContentTypeApi> ctApiLazy,
                       Lazy <ContentExportApi> contentExportLazy
                       ) : base(dependencies)
 {
     _ctApiLazy         = ctApiLazy;
     _contentExportLazy = contentExportLazy;
 }
Beispiel #4
0
 public InstallController(
     StatefulControllerDependencies dependencies,
     Lazy <IEnvironmentInstaller> envInstallerLazy,
     Lazy <ImportFromRemote> impFromRemoteLazy) : base(dependencies)
 {
     _envInstallerLazy  = envInstallerLazy;
     _impFromRemoteLazy = impFromRemoteLazy;
 }
Beispiel #5
0
 public QueryController(StatefulControllerDependencies dependencies,
                        Lazy <QueryApi> queryLazy,
                        Lazy <CmsManager> cmsManagerLazy,
                        Lazy <AppConfigDelegate> configProviderLazy
                        ) : base(dependencies)
 {
     _queryLazy          = queryLazy;
     _cmsManagerLazy     = cmsManagerLazy;
     _configProviderLazy = configProviderLazy;
 }
Beispiel #6
0
 public EntityController(StatefulControllerDependencies dependencies,
                         Lazy <EntityApi> lazyEntityApi,
                         Lazy <EntityBackend> lazyEntityBackend,
                         Lazy <ContentExportApi> contentExportLazy,
                         Lazy <ContentImportApi> contentImportLazy) : base(dependencies)
 {
     _contentExportLazy = contentExportLazy;
     _contentImportLazy = contentImportLazy;
     _lazyEntityApi     = lazyEntityApi;
     _lazyEntityBackend = lazyEntityBackend;
 }
Beispiel #7
0
 public AdamController(
     StatefulControllerDependencies dependencies,
     Lazy <AdamTransUpload <int, int> > adamUpload,
     Lazy <AdamTransGetItems <int, int> > adamItems,
     Lazy <AdamTransFolder <int, int> > adamFolders,
     Lazy <AdamTransDelete <int, int> > adamDelete,
     Lazy <AdamTransRename <int, int> > adamRename) : base(dependencies)
 {
     _adamUpload  = adamUpload;
     _adamItems   = adamItems;
     _adamFolders = adamFolders;
     _adamDelete  = adamDelete;
     _adamRename  = adamRename;
 }
Beispiel #8
0
 public AppController(StatefulControllerDependencies dependencies,
                      Lazy <AppsBackend> appsBackendLazy,
                      Lazy <CmsZones> cmsZonesLazy,
                      Lazy <ExportApp> exportAppLazy,
                      Lazy <ImportApp> importAppLazy,
                      Lazy <AppManager> appManagerLazy,
                      Lazy <AppCreator> appBuilderLazy) : base(dependencies)
 {
     _appsBackendLazy = appsBackendLazy;
     _cmsZonesLazy    = cmsZonesLazy;
     _exportAppLazy   = exportAppLazy;
     _importAppLazy   = importAppLazy;
     _appManagerLazy  = appManagerLazy;
     _appBuilderLazy  = appBuilderLazy;
 }
Beispiel #9
0
 public FeatureController(StatefulControllerDependencies dependencies, FeaturesBackend featuresBackend) : base(dependencies)
 {
     _featuresBackend = featuresBackend;
 }
Beispiel #10
0
 public AppFilesController(StatefulControllerDependencies dependencies, Lazy <AppAssetsBackend> appAssetsLazy) : base(dependencies)
 {
     _appAssetsLazy = appAssetsLazy;
 }
Beispiel #11
0
 public MetadataController(StatefulControllerDependencies dependencies) : base(dependencies)
 {
 }
Beispiel #12
0
 public ZoneController(StatefulControllerDependencies dependencies, LanguagesBackend languagesBackend) : base(dependencies)
 {
     _languagesBackend = languagesBackend;
 }
Beispiel #13
0
 public FieldController(StatefulControllerDependencies dependencies, Lazy <AppRuntime> appRuntime, Lazy <ContentTypeApi> ctApiLazy) : base(dependencies)
 {
     _appRuntime = appRuntime;
     _ctApiLazy  = ctApiLazy;
 }
Beispiel #14
0
 public DialogController(StatefulControllerDependencies dependencies) : base(dependencies)
 {
 }