Exemple #1
0
 public EditContactPresenter(
     ApplicationPresenter _applicationPresenter,
     EditContactView view,
     Contact _contact) : base(view, "Contact.LookupName")
 {
     applicationPresenter = _applicationPresenter;
     contact = _contact;
 }
Exemple #2
0
 public EditContactPresenter(
     ApplicationPresenter applicationPresenter,
     EditContactView view,
     Contact contact)
     : base(view, "Contact.Name")
 {
     _applicationPresenter = applicationPresenter;
     _contact = contact;
 }
Exemple #3
0
 public ContactListPresenter(ApplicationPresenter applicacationPresenter, ContactListView view)
     : base(view, "TabHeader")
 {
     _applicationPresenter = applicacationPresenter;
 }