Exemplo n.º 1
0
 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;
 }
Exemplo n.º 3
0
        public IncentiveCampaignApl()
        {
            //this.incentiveCampaignDb = new IncentiveCampaignCorporateDb();
            this.incentiveCampaignDb = new IncentiveCampaignDb();

            this.dealershipApl = new DealershipApl();
            this.dealerApl     = new DealerApl();
            this.termApl       = new TermApl();
        }
Exemplo n.º 4
0
 public DealerApl(IDealerDb dealerDb,
                  IDealershipApl dealershipApl,
                  IIncentiveCampaignApl campaignApl
                  )
 {
     this.dealerDb    = dealerDb;
     this.scoreApl    = new ScoreApl();
     this.campaignApl = new IncentiveCampaignApl();
 }
Exemplo n.º 5
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;
 }
Exemplo n.º 6
0
 public DealershipController(IDealershipApl dealershipApl)
 {
     this.dealershipApl = dealershipApl;
 }
Exemplo n.º 7
0
 public DealershipController()
 {
     this.dealershipApl = new DealershipApl();
 }