Exemplo n.º 1
0
 public IdentityService(IHttpContextAccessor contextAccess, HttpClient http, LogHttpResponse log, LocalStorageService storage)
 {
     this.contextAccess = contextAccess;
     this.http          = http;
     this.log           = log;
     this.storage       = storage;
 }
 public HttpExchangeRepository(HttpClient http, LogHttpResponse log) : base(http, log)
 {
     this.Path = "Exchange";
 }
 public HttpBaseRepository(HttpClient http, LogHttpResponse log)
 {
     this.http = http;
     this.log  = log;
 }
 public HttpPlatformLiveLogsRepository(HttpClient http, LogHttpResponse log)
 {
     this.http = http;
     this.log  = log;
     this.Path = "PlatformLiveLogs";
 }
Exemplo n.º 5
0
 public HttpUserExchangeSecretRepository(HttpClient http, LogHttpResponse log) : base(http, log)
 {
     this.Path = "UserExchangeSecret";
 }
 public HttpLimitArbitrageStrategy4SettingsRepository(HttpClient http, LogHttpResponse log) : base(http, log)
 {
     this.Path = "LimitArbitrage4Settings";
 }