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