namespace LaaProduction.Services.Interfaces { using LaaProduction.Services.Models; using System.Threading.Tasks; public interface IHttpService { Task GetAsync(string path); Task OptionsAsync(string path); } }