using Microsoft.Extensions.Options; using System.Net; using System.Net.Http; namespace DigitalData.Core.Legacy.Client { public class HttpClientService : BaseHttpClientService where TClientOptions : HttpClientOptions { public HttpClientService(HttpClient client, CookieContainer cookieContainer, IOptions clientOptions) : base(client, cookieContainer, clientOptions) { } } }