public ScoreApl(IScoreDb scoreDb, IDealershipApl dealershipApl, IIncentiveCampaignApl campaignApl, IDealerApl dealerApl)
 {
     this.scoreDb       = scoreDb;
     this.dealershipApl = dealershipApl;
     this.campaignApl   = campaignApl;
     this.dealerApl     = dealerApl;
 }
Beispiel #2
0
 public DealerApl()
 {
     this.dealerDb      = new DealerDb();
     this.scoreApl      = new ScoreApl();
     this.dealershipApl = new DealershipApl();
     this.campaignApl   = new IncentiveCampaignApl();
 }
 public DealershipApl(IDealershipDb dealershipDb,
                      IIncentiveCampaignApl incentiveCampaignApl,
                      IDealerApl dealerApl)
 {
     this.dealershipDb         = dealershipDb;
     this.incentiveCampaignApl = incentiveCampaignApl;
     this.dealerApl            = dealerApl;
 }
Beispiel #4
0
 public DealerApl(IDealerDb dealerDb,
                  IDealershipApl dealershipApl,
                  IIncentiveCampaignApl campaignApl
                  )
 {
     this.dealerDb    = dealerDb;
     this.scoreApl    = new ScoreApl();
     this.campaignApl = new IncentiveCampaignApl();
 }
 public TermApl()
 {
     this.incentiveCampaignApl = new IncentiveCampaignApl();
     this.termDb = new TermDb();
 }
 public CampaignController()
 {
     incentiveCampaignApl = new IncentiveCampaignApl();
 }