Exemple #1
0
 public DealerApl()
 {
     this.dealerDb      = new DealerDb();
     this.scoreApl      = new ScoreApl();
     this.dealershipApl = new DealershipApl();
     this.campaignApl   = new IncentiveCampaignApl();
 }
Exemple #2
0
 public DealerApl(IDealerDb dealerDb,
                  IDealershipApl dealershipApl,
                  IIncentiveCampaignApl campaignApl
                  )
 {
     this.dealerDb    = dealerDb;
     this.scoreApl    = new ScoreApl();
     this.campaignApl = new IncentiveCampaignApl();
 }
Exemple #3
0
 public IncentiveCampaignApl(IIncentiveCampaignDb incentiveCampaignDb,
                             IDealershipApl dealershipApl,
                             IDealerApl dealerApl,
                             IScoreApl scoreApl,
                             ITermApl termApl)
 {
     this.incentiveCampaignDb = incentiveCampaignDb;
     this.dealershipApl       = dealershipApl;
     this.dealerApl           = dealerApl;
     this.scoreApl            = scoreApl;
     this.termApl             = termApl;
 }
 public ScoreController()
 {
     scoreApl = new ScoreApl();
 }