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