Beispiel #1
0
 public ConverterMoedaCommandHandler(ICurrencyLayerService currencyLayerService)
 {
     _currencyLayerService = currencyLayerService;
 }
 public CurrencyController(ICurrencyLayerService layerService) => _layerService = layerService;
 public CurrenciesController(ICurrencyLayerService currencyLayerService)
 {
     _currencyLayerService = currencyLayerService;
 }
 public ConverterMoedaController(IMediator mediator,
                                 IFluentValidationResult validationResult,
                                 ICurrencyLayerService currencyLayerService) :
     base(mediator, validationResult) => _currencyLayerService = currencyLayerService;