Example #1
0
 public ListViewShape(IContentDefinitionManager contentDefinitionManager,
     IContentManager contentManager,
     IViewPartService projectionService)
 {
     _contentDefinitionManager = contentDefinitionManager;
     _contentManager = contentManager;
     _projectionService = projectionService;
 }
 public ViewDefinitionController(IContentManager iContentManager,
     IOrchardServices orchardServices,
     IViewPartService viewPartService)
 {
     _contentManager = iContentManager;
     Services = orchardServices;
     _viewPartService = viewPartService;
 }
 public ProjectionEntityEventsHandler(
     IProjectionService projectionService,
     IContentDefinitionManager contentDefinitionManager,
     IViewPartService viewPartService,
     IContentManager contentManager) {
     _projectionService = projectionService;
     _contentDefinitionManager = contentDefinitionManager;
     _viewPartService = viewPartService;
     _contentManager = contentManager;
 }
 public ProjectionController(
     IContentManager contentManager,
     IViewPartService viewPartService) {
     _contentManager = contentManager;
     _viewPartService = viewPartService;
 }