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