예제 #1
0
 public LegacyPathServiceTests()
 {
     pathClientOptions = new PathClientOptions
     {
         BaseAddress = dummyUrl,
     };
     legacyPathService = new LegacyPathService(fakeLogger, fakeHttpClient, pathClientOptions, fakeApiDataService);
 }
예제 #2
0
 public LegacyPathService(
     ILogger <LegacyPathService> logger,
     HttpClient httpClient,
     PathClientOptions pathClientOptions,
     IApiDataService apiDataService)
 {
     this.logger            = logger;
     this.httpClient        = httpClient;
     this.pathClientOptions = pathClientOptions;
     this.apiDataService    = apiDataService;
 }