using DigitalData.Core.Client.Interface; using Microsoft.Extensions.Options; using System.Net; namespace DigitalData.Core.Client { public class HttpClientService : BaseHttpClientService, IHttpClientService, IBaseHttpClientService where TClientOptions : class, IHttpClientOptions { public HttpClientService(HttpClient client, CookieContainer cookieContainer, IOptions clientOptions) : base(client, cookieContainer, clientOptions.Value) { } } }