Пример #1
0
 public SlaveServiceClient(IRestReader reader, string host)
     : base(reader, host, ContentTypes.Json)
 {
 }
Пример #2
0
 public CurrencyController(IConfiguration configuration, IRestReader reader, ILogger <CurrencyController> logger)
 {
     _reader = reader;
     _logger = logger;
     _nbpUrl = configuration["NBPUrl"];
 }
Пример #3
0
 public PerspectivManagementClient(
     IRestReader reader, string host)
     : base(reader, host, ContentTypes.Json)
 {
 }
Пример #4
0
 public MasterServiceClient(IRestReader reader, IMasterServiceClientConfig config)
     : base(reader, config.MasterUri, ContentTypes.Json)
 {
 }
Пример #5
0
 protected RestClient(IRestReader reader, string host, string contentType)
 {
     this.reader      = reader;
     this.host        = host;
     this.contentType = contentType;
 }