Esempio n. 1
0
 public static CustomerNotesEditorPresenter Create(ICustomerNotesEditorView view)
 {
     return(new CustomerNotesEditorPresenter(view, RepositoryFactory.CreateCustomerNotesRepository()));
 }
Esempio n. 2
0
 public CustomerNotesEditorPresenter(ICustomerNotesEditorView view, INotesRepository repository)
 {
     this.repository = repository;
     this.view       = view;
 }