Ejemplo n.º 1
0
 public YandexController(IYandexService yandexService, YandexConfiguration configuration) : base(yandexService, configuration)
 {
 }
Ejemplo n.º 2
0
 public YandexMoneyController(IOptions <YandexConfiguration> yandexConfigurationOptions)
 {
     _yandexConfiguration = yandexConfigurationOptions.Value;
 }
Ejemplo n.º 3
0
 public YandexTranslate(YandexConfiguration configuration, ILogger logger)
 {
     _logger   = logger;
     _endpoint = new Uri(configuration.Address + configuration.Key);
 }