public DealerApl() { this.dealerDb = new DealerDb(); this.scoreApl = new ScoreApl(); this.dealershipApl = new DealershipApl(); this.campaignApl = new IncentiveCampaignApl(); }
public ScoreApl(IScoreDb scoreDb, IDealershipApl dealershipApl, IIncentiveCampaignApl campaignApl, IDealerApl dealerApl) { this.scoreDb = scoreDb; this.dealershipApl = dealershipApl; this.campaignApl = campaignApl; this.dealerApl = dealerApl; }
public IncentiveCampaignApl() { //this.incentiveCampaignDb = new IncentiveCampaignCorporateDb(); this.incentiveCampaignDb = new IncentiveCampaignDb(); this.dealershipApl = new DealershipApl(); this.dealerApl = new DealerApl(); this.termApl = new TermApl(); }
public DealerApl(IDealerDb dealerDb, IDealershipApl dealershipApl, IIncentiveCampaignApl campaignApl ) { this.dealerDb = dealerDb; this.scoreApl = new ScoreApl(); this.campaignApl = new IncentiveCampaignApl(); }
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 DealershipController(IDealershipApl dealershipApl) { this.dealershipApl = dealershipApl; }
public DealershipController() { this.dealershipApl = new DealershipApl(); }