Ejemplo n.º 1
0
 public InterestCalcController(IInterestCalculationService interestCalculationService,
                               ILogger <InterestCalcController> logger)
 {
     _interestCalculationService = interestCalculationService;
     _logger = logger;
 }
 public CalculateInterestRequestHandler(IInterestCalculationService calculationService,
                                        IInterestRateGateway interestRateGateway)
 {
     _calculationService  = calculationService;
     _interestRateGateway = interestRateGateway;
 }