Beispiel #1
0
 public HistoryController(StatefulControllerDependencies dependencies,
                          IdentifierHelper idHelper,
                          Lazy <AppManager> appManagerLazy) : base(dependencies)
 {
     _idHelper       = idHelper;
     _appManagerLazy = appManagerLazy;
 }
        protected OqtStatefulControllerBase(StatefulControllerDependencies dependencies) : base()
        {
            ServiceProvider = dependencies.ServiceProvider;
            _oqtState       = new OqtState(GetRequest, ServiceProvider, Log);

            dependencies.CtxResolver.AttachRealBlock(() => GetBlock());
            dependencies.CtxResolver.AttachBlockContext(GetContext);
        }
Beispiel #3
0
        protected OqtStatefulControllerBase(StatefulControllerDependencies dependencies) : base()
        {
            ServiceProvider         = dependencies.ServiceProvider;
            _moduleRepository       = dependencies.ModuleRepository;
            _oqtTempInstanceContext = dependencies.OqtTempInstanceContext;

            dependencies.CtxResolver.AttachRealBlock(() => GetBlock());
            dependencies.CtxResolver.AttachBlockContext(GetContext);
        }
Beispiel #4
0
 public EditController(StatefulControllerDependencies dependencies,
                       Lazy <EntityPickerBackend> entityBackend,
                       Lazy <EditLoadBackend> loadBackend,
                       Lazy <EditSaveBackend> saveBackendLazy,
                       Lazy <HyperlinkBackend <int, int> > linkBackendLazy) : base(dependencies)
 {
     _entityBackend   = entityBackend;
     _loadBackend     = loadBackend;
     _saveBackendLazy = saveBackendLazy;
     _linkBackendLazy = linkBackendLazy;
 }
Beispiel #5
0
 public BlockController(StatefulControllerDependencies dependencies,
                        Lazy <CmsRuntime> lazyCmsRuntime,
                        Lazy <ContentBlockBackend> blockBackendLazy,
                        Lazy <AppViewPickerBackend> viewPickerBackendLazy,
                        Lazy <CmsZones> cmsZonesLazy,
                        Lazy <AppViewPickerBackend> appViewPickerBackendLazy) : base(dependencies)
 {
     _lazyCmsRuntime           = lazyCmsRuntime;
     _blockBackendLazy         = blockBackendLazy;
     _viewPickerBackendLazy    = viewPickerBackendLazy;
     _cmsZonesLazy             = cmsZonesLazy;
     _appViewPickerBackendLazy = appViewPickerBackendLazy;
 }
Beispiel #6
0
 public AppQueryController(StatefulControllerDependencies dependencies, AppQuery appQuery) : base(dependencies)
 {
     _appQuery = appQuery;
 }
 public AppContentController(StatefulControllerDependencies dependencies, Lazy <AppContent> appContentLazy) : base(dependencies)
 {
     _appContentLazy = appContentLazy;
 }
Beispiel #8
0
 public ListController(StatefulControllerDependencies dependencies, Lazy <FieldListBackend> fieldListBackendLazy) : base(dependencies)
 {
     _fieldListBackendLazy = fieldListBackendLazy;
 }
Beispiel #9
0
 public HyperlinkController(StatefulControllerDependencies dependencies, HyperlinkBackend <int, int> hyperlinkBackend) : base(dependencies)
 {
     _hyperlinkBackend = hyperlinkBackend;
 }
Beispiel #10
0
 public ItemController(StatefulControllerDependencies dependencies,
                       Lazy <AppViewPickerBackend> appViewPickerBackendLazy) : base(dependencies)
 {
     _appViewPickerBackendLazy = appViewPickerBackendLazy;
 }
Beispiel #11
0
 public ContentGroupController(StatefulControllerDependencies dependencies,
                               Lazy <ListsBackendBase> listBackendLazy) : base(dependencies)
 {
     _listBackendLazy = listBackendLazy;
 }