Esempio n. 1
0
 public AccountEditorPresenter(IMGBAccountEditorView view, IMGBModel model)
 {
     this._accountEditorFormView = view;
     this._model = model;
     this.ConnectModelWithView();
     this.Initialize();
 }
Esempio n. 2
0
 public void ShowAccountEditorView(IMGBAccountEditorView view)
 {
     view.Location = this.Location;
     view.ShowView(this);
     this.Hide();
 }