예제 #1
0
        public AddFormPresenter(IViewFullInfo view)
        {
            _view  = view;
            _add   = (IViewAdd)view;
            _model = Model.GetModel();

            _add.AddEvent += AddToBase;
        }
예제 #2
0
 public Presenter(IViewAdd add)
 {
     this.data = new Model();
     this.add  = add;
 }
예제 #3
0
 public AddPresenter(iApplicationContext oContext, IViewAdd view)
     : base(oContext, view)
 {
     this.CurrentManager = new BaseModuleManager(oContext);
 }