Ejemplo n.º 1
0
 public PrintController(IPrintView view, Wizard model)
 {
     _view = view;
     _view.SetController(this);
     _model = model;
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PrintPresenter"/> class.
 /// </summary>
 /// <param name="view">The view.</param>
 public PrintPresenter(IPrintView view)
 {
     this._PrintView = view;
 }