Example #1
0
 public Application(
     IModel model,
     UI.Presenters.IPresentation presentation,
     IReactive reactive
     )
 {
     this.Model        = model;
     this.Presentation = presentation;
     this.reactive     = reactive;
 }
Example #2
0
 public Application(
     IModel model,
     UI.Presenters.IPresentation presentation,
     UI.Windows.IView view
     )
 {
     this.Model        = model;
     this.Presentation = presentation;
     this.View         = view;
 }
Example #3
0
 public Plugin(IModel model, UI.Presenters.IPresentation presentation)
 {
     Chromium.Factory.Create(model);
     Chromium.UI.Presenters.Factory.Create(presentation);
 }
Example #4
0
        public Plugin(IModel model, UI.Presenters.IPresentation presentation)
        {
            var modelObjects = Symphony.Factory.Create(model);

            Symphony.UI.Presenters.Factory.Create(model, modelObjects, presentation);
        }