Ejemplo n.º 1
0
 public ConfigurableEditorBuilderWrapper(
     IContentManager contentManager,
     IFrontEndEditService frontEndEditService)
 {
     _contentManager      = contentManager;
     _frontEndEditService = frontEndEditService;
 }
 public ContactFormController(
     IContactFormService contactFormService,
     IOrchardServices orchardServices,
     IFrontEndEditService frontEndEditService,
     IContentManager contentManager,
     IWorkflowManager workflowManager)
 {
     _contactFormService   = contactFormService;
     _orchardServices      = orchardServices;
     _frontEndEditeService = frontEndEditService;
     _contentManager       = contentManager;
     _workflowManager      = workflowManager;
 }
Ejemplo n.º 3
0
 public ContactFormDriver(
     IUtilsServices utilsServices,
     INotifier notifier,
     IStorageProvider storageProvider,
     IRepository <TemplatePartRecord> repositoryTemplatePartRecord,
     IContentManager contentManager,
     IFrontEndEditService frontEndProfileService)
 {
     _contentManager  = contentManager;
     _storageProvider = storageProvider;
     _utilsServices   = utilsServices;
     _notifier        = notifier;
     _repositoryTemplatePartRecord = repositoryTemplatePartRecord;
     _frontEndEditService          = frontEndProfileService;
 }
Ejemplo n.º 4
0
        public ContactFormController(
            IContactFormService contactFormService,
            IOrchardServices orchardServices,
            IFrontEndEditService frontEndEditService,
            IContentManager contentManager,
            IWorkflowManager workflowManager,
            INotifier notifier)
        {
            _contactFormService   = contactFormService;
            _orchardServices      = orchardServices;
            _frontEndEditeService = frontEndEditService;
            _contentManager       = contentManager;
            _workflowManager      = workflowManager;
            _notifier             = notifier;

            T = NullLocalizer.Instance;
        }
Ejemplo n.º 5
0
 public DynamicProjectionDisplayController(
     IOrchardServices orchardServices,
     IProjectionManagerExtension projectionManager,
     IContentManager contentManager,
     IShapeFactory shapeFactory,
     IDynamicProjectionService dynamicProjectoinService,
     IQueryPickerService queryPickerService,
     IFrontEndEditService frontEndEditService,
     ShellSettings shellSettings
     )
 {
     _orchardServices   = orchardServices;
     _projectionManager = projectionManager;
     _contentManager    = contentManager;
     T                         = NullLocalizer.Instance;
     Logger                    = NullLogger.Instance;
     _shapeFactory             = shapeFactory;
     _dynamicProjectoinService = dynamicProjectoinService;
     _queryPickerService       = queryPickerService;
     _frontEndEditService      = frontEndEditService;
     _shellSettings            = shellSettings;
 }