public DrillDisplayProvider( IContentManager contentManager, IOrigamiService origami) { _contentManager = contentManager; _origami = origami; }
public LensSocketCompositionProvider( IShapeFactory shapeFactory, IOrigamiService origami ) { Shape = shapeFactory; _origami = origami; }
public ContentDisplayAlchemyProvider( IContentManager contentManager, IOrigamiService origamiService ) { _contentManager = contentManager; _origami = origamiService; }
public ConnectorModelItemDriver( IOrigamiService origami ) { _origami = origami; T = NullLocalizer.Instance; }
public AddressPartDriver(IAddressDirectoryService directoryService, IWorkContextAccessor workContextAccessor, IOrigamiService origami) { _workContextAccessor = workContextAccessor; _directoryService = directoryService; _origami = origami; T = NullLocalizer.Instance; }
public AlchemyService( ICompositionProvider compositionEvents, IOrigamiService origami ) { _compositionEvents = compositionEvents; _origami = origami; }
public LensService( ISearchService searchService, IOrigamiService origami ) { _searchService = searchService; _origami = origami; }
public ContentListsAlchemyProvider( IContentManager contentManager, IOrigamiService origamiService, IShapeFactory shapeFactory ) { _contentManager = contentManager; _origami = origamiService; Shape = shapeFactory; }
public ConnectorPartDriver( IOrigamiService origami, Lazy <IMechanicsService> mechanics, Lazy <IContentManager> contentManager) { _origami = origami; _contentManager = contentManager; _mechanics = mechanics; }
public static ModelShapeBuilder BuildEditorShape(this IOrigamiService origami, object model, IUpdateModel updater, string prefix, string displayType, string stereotype, string contentType = null, ModelShapeContext parentContext = null) { var builder = origami.Builder(model) .WithMode("Editor") .WithUpdater(updater, prefix) .WithDisplayType(displayType) .WithStereotype(stereotype) .WithContentType(contentType) .WithParent(parentContext); return(builder); }
public MechanicsDisplay( IOrigamiService origami, IShapeFactory shapeFactory, IMechanicsService mechanics ) { _origami = origami; Shape = _shapeFactory = shapeFactory; T = NullLocalizer.Instance; Logger = NullLogger.Instance; _mechanics = mechanics; }
public PaperclipFilter( IWorkContextAccessor workContextAccessor, IOrigamiService origami, IShapeFactory shapeFactory ) { _workContextAccessor = workContextAccessor; _origami = origami; Logger = NullLogger.Instance; T = NullLocalizer.Instance; ShapeFactory = Shape = shapeFactory; }
public DefaultAlchemyProvider( IOrigamiService origamiService ) { _origami = origamiService; }
public OrigamiContentDisplay( IOrigamiService origami ) { _origami = origami; }