コード例 #1
0
 public static CustomerNotesEditorPresenter Create(ICustomerNotesEditorView view)
 {
     return(new CustomerNotesEditorPresenter(view, RepositoryFactory.CreateCustomerNotesRepository()));
 }
コード例 #2
0
 public CustomerNotesEditorPresenter(ICustomerNotesEditorView view, INotesRepository repository)
 {
     this.repository = repository;
     this.view       = view;
 }