public ScoreApl(IScoreDb scoreDb, IDealershipApl dealershipApl, IIncentiveCampaignApl campaignApl, IDealerApl dealerApl)
 {
     this.scoreDb       = scoreDb;
     this.dealershipApl = dealershipApl;
     this.campaignApl   = campaignApl;
     this.dealerApl     = dealerApl;
 }
 public DealershipApl(IDealershipDb dealershipDb,
                      IIncentiveCampaignApl incentiveCampaignApl,
                      IDealerApl dealerApl)
 {
     this.dealershipDb         = dealershipDb;
     this.incentiveCampaignApl = incentiveCampaignApl;
     this.dealerApl            = dealerApl;
 }
Beispiel #3
0
        public IncentiveCampaignApl()
        {
            //this.incentiveCampaignDb = new IncentiveCampaignCorporateDb();
            this.incentiveCampaignDb = new IncentiveCampaignDb();

            this.dealershipApl = new DealershipApl();
            this.dealerApl     = new DealerApl();
            this.termApl       = new TermApl();
        }
Beispiel #4
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 DealerController()
 {
     dealerApl = new DealerApl();
 }
 public DealershipApl()
 {
     this.dealershipDb = new DealershipCorporateDb();
     this.dealerApl    = new DealerApl();
 }