public LeadEvaluator_ConsoleTest(
     ScoringAndVerificationService scoringSvc,
     ProductRecommendationService productRecommendationSvc
     )
 {
     _interestConfirmationEval = new InterestConfirmationEvaluator();
     _applicationEval          = new ApplicationEvaluator(scoringSvc, productRecommendationSvc);
 }
Esempio n. 2
0
 public LeadEvaluator(
     MobileMessageService messageSvc,
     ScoringAndVerificationService scoringSvc,
     ProductRecommendationService productRecommendationSvc,
     LeadRepository leadRepo
     )
 {
     _interestConfirmationEval = new InterestConfirmationEvaluator(messageSvc);
     _applicationEval          = new ApplicationEvaluator(messageSvc, scoringSvc, productRecommendationSvc);
     _leadRepo = leadRepo;
 }