Beispiel #1
0
 public InvestmentOptionsController(
     ICurrencyConversionService currencyConversionService,
     IInvestmentOptionService investmentOptionService,
     IInvestmentOptionMapper investmentOptionMapper)
 {
     this._currencyConversionService = currencyConversionService;
     this._investmentOptionService   = investmentOptionService;
     this._investmentOptionMapper    = investmentOptionMapper;
 }
Beispiel #2
0
 public InvestmentOptionMapper(IInvestmentOptionService investmentOptionService)
 {
     this._investmentOptionService = investmentOptionService;
 }