Exemple #1
0
 public RetentionRepurchasesClaimedTabPresenter(IRetentionRepurchasesClaimedTabView view, IRetentionRepository repository)
 {
     ArgumentChecker.ThrowIfNull(view, "view");
     ArgumentChecker.ThrowIfNull(repository, "repository");
     this.view       = view;
     this.repository = repository;
 }
        private ChargesTabPresenter(IChargesTabView view, IRetentionRepository repository)
        {
            ArgumentChecker.ThrowIfNull(view, "view");
            ArgumentChecker.ThrowIfNull(repository, "repository");

            this.view       = view;
            this.repository = repository;
        }
Exemple #3
0
        public RetentionSchedulePresenter(IRetentionSchedulesView view, IRetentionRepository repository)
        {
            ArgumentChecker.ThrowIfNull(view, "view");
            ArgumentChecker.ThrowIfNull(repository, "repository");

            this.view       = view;
            this.repository = repository;
        }
Exemple #4
0
 public CreditsClaimedTabPresenter(ICreditsClaimedTabView view, IRetentionRepository repository)
 {
     this.view       = view;
     this.repository = repository;
 }