using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace UseRestService.Data { public static class PartsManager { // TODO: Add fields for BaseAddress, Url, and authorizationKey static readonly string BaseAddress = "URL GOES HERE"; static readonly string Url = $"{BaseAddress}/api/"; static HttpClient client; private static async Task GetClient() { throw new NotImplementedException(); } public static async Task> GetAll() { throw new NotImplementedException(); } public static async Task Add(string partName, string supplier, string partType) { throw new NotImplementedException(); } public static async Task Update(Part part) { throw new NotImplementedException(); } public static async Task Delete(string partID) { throw new NotImplementedException(); } } }