Exemple #1
0
        public RetentionDetailsTabPresenter(IRetentionDetailsTabView view, IRetentionRepository retentionRepository)
        {
            ArgumentChecker.ThrowIfNull(view, "view");
            ArgumentChecker.ThrowIfNull(retentionRepository, "retentionRepository");

            this.view = view;
            this.retentionRepository = retentionRepository;
        }
Exemple #2
0
 public static RetentionDetailsTabPresenter Create(IRetentionDetailsTabView view)
 {
     return(new RetentionDetailsTabPresenter(view, RepositoryFactory.CreateRetentionRepository()));
 }