Exemplo n.º 1
0
 public RateCalculationService(ICustomerService personService, IBaseRateService baseRateService, IAgreementService agreementService, ILogger <RateCalculationService> log)
 {
     _personService    = personService;
     _baseRateService  = baseRateService;
     _agreementService = agreementService;
     _log = log;
 }
 public AgreementProcessor(
     IAgreementService agreementService,
     ICustomerService customerService,
     IBaseRateService baseRateService)
 {
     _agreementService = agreementService;
     _customerService  = customerService;
     _baseRateService  = baseRateService;
 }
Exemplo n.º 3
0
 public InterestRateService(IUnitOfWork uow, IBaseRateService baseRateService)
 {
     this.uow             = uow;
     this.baseRateService = baseRateService;
 }