Exemplo n.º 1
0
 public void Open(IViewRequest view)
 {
     if (view.NumInn == "")
     {
         CashWin cash = new CashWin(view.Status, view.NumPass);
         cash.ShowDialog();
     }
     else if (view.NumPass == "")
     {
         CashWin cash = new CashWin(view.Status, view.NumInn);
         cash.ShowDialog();
     }
 }
Exemplo n.º 2
0
 public PresenterRequest(IViewRequest view)
 {
     this.view = view;
     mr        = new ModelRequest();
 }