コード例 #1
0
 public BookingApiDriver(HttpClientWrapper client)
 {
     _client = client;
 }
コード例 #2
0
ファイル: SetupDrivers.cs プロジェクト: henningc/fagdag-cqrs
        private static void CreateHttpClient()
        {
            var httpClient = new HttpClient();

            _httpClientWrapper = new HttpClientWrapper(httpClient, Settings.BaseUrlForWebApi);
        }