public RetentionNotesTabPresenter(IRetentionNotesTabView view, IRetentionNotesTabRepository repository)
 {
     this.view       = view;
     this.repository = repository;
 }
 public static RetentionNotesTabPresenter Create(IRetentionNotesTabView view)
 {
     return(new RetentionNotesTabPresenter(view, RepositoryFactory.CreateRetentionNotesTabRepository()));
 }