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;
 }
Example #4
0
 public ConnectorModelItemDriver(
     IOrigamiService origami
     )
 {
     _origami = origami;
     T        = NullLocalizer.Instance;
 }
Example #5
0
 public AddressPartDriver(IAddressDirectoryService directoryService, IWorkContextAccessor workContextAccessor, IOrigamiService origami)
 {
     _workContextAccessor = workContextAccessor;
     _directoryService    = directoryService;
     _origami             = origami;
     T = NullLocalizer.Instance;
 }
Example #6
0
 public AlchemyService(
     ICompositionProvider compositionEvents,
     IOrigamiService origami
     )
 {
     _compositionEvents = compositionEvents;
     _origami           = origami;
 }
 public LensSocketCompositionProvider(
     IShapeFactory shapeFactory,
     IOrigamiService origami
     )
 {
     Shape    = shapeFactory;
     _origami = origami;
 }
 public ContentDisplayAlchemyProvider(
     IContentManager contentManager,
     IOrigamiService origamiService
     )
 {
     _contentManager = contentManager;
     _origami        = origamiService;
 }
Example #9
0
 public LensService(
     ISearchService searchService,
     IOrigamiService origami
     )
 {
     _searchService = searchService;
     _origami       = origami;
 }
Example #10
0
 public LensService(
     ISearchService searchService,
     IOrigamiService origami
     )
 {
     _searchService = searchService;
     _origami = origami;
 }
 public ContentListsAlchemyProvider(
     IContentManager contentManager,
     IOrigamiService origamiService,
     IShapeFactory shapeFactory
 ) {
     _contentManager = contentManager;
     _origami = origamiService;
     Shape = shapeFactory;
 }
Example #12
0
 public ConnectorPartDriver(
     IOrigamiService origami,
     Lazy <IMechanicsService> mechanics,
     Lazy <IContentManager> contentManager)
 {
     _origami        = origami;
     _contentManager = contentManager;
     _mechanics      = mechanics;
 }
Example #13
0
 public ContentListsAlchemyProvider(
     IContentManager contentManager,
     IOrigamiService origamiService,
     IShapeFactory shapeFactory
     )
 {
     _contentManager = contentManager;
     _origami        = origamiService;
     Shape           = shapeFactory;
 }
Example #14
0
        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);
        }
Example #15
0
 public MechanicsDisplay(
     IOrigamiService origami,
     IShapeFactory shapeFactory,
     IMechanicsService mechanics
     )
 {
     _origami = origami;
     Shape = _shapeFactory = shapeFactory;
     T = NullLocalizer.Instance;
     Logger = NullLogger.Instance;
     _mechanics = mechanics;
 }
Example #16
0
 public PaperclipFilter(
     IWorkContextAccessor workContextAccessor,
     IOrigamiService origami,
     IShapeFactory shapeFactory
     )
 {
     _workContextAccessor = workContextAccessor;
     _origami = origami;
     Logger = NullLogger.Instance;
     T = NullLocalizer.Instance;
     ShapeFactory = Shape = shapeFactory;
 }
Example #17
0
 public PaperclipFilter(
     IWorkContextAccessor workContextAccessor,
     IOrigamiService origami,
     IShapeFactory shapeFactory
     )
 {
     _workContextAccessor = workContextAccessor;
     _origami             = origami;
     Logger       = NullLogger.Instance;
     T            = NullLocalizer.Instance;
     ShapeFactory = Shape = shapeFactory;
 }
Example #18
0
 public MechanicsDisplay(
     IOrigamiService origami,
     IShapeFactory shapeFactory,
     IMechanicsService mechanics
     )
 {
     _origami   = origami;
     Shape      = _shapeFactory = shapeFactory;
     T          = NullLocalizer.Instance;
     Logger     = NullLogger.Instance;
     _mechanics = mechanics;
 }
 public DefaultAlchemyProvider(
                 IOrigamiService origamiService
     ) {
     _origami = origamiService;
 }
 public OrigamiContentDisplay(
     IOrigamiService origami
     ) {
         _origami = origami;
 }
 public OrigamiContentDisplay(
     IOrigamiService origami
     )
 {
     _origami = origami;
 }
 public DefaultAlchemyProvider(
     IOrigamiService origamiService
     )
 {
     _origami = origamiService;
 }
 public DrillDisplayProvider(
     IContentManager contentManager,
     IOrigamiService origami) {
     _contentManager = contentManager;
     _origami = origami;
 }