using ReportingServices.Shared.Models.ProductionReport; using System.Net.Http.Json; using System.Text.Json; namespace ReportingServices.Shared.HelperClasses { public static class ApiCaller { public static async Task GetApi(string url) { T deserializedJson; using (HttpClient client = new()) { string apiResponse = await client.GetStringAsync(url); deserializedJson = JsonSerializer.Deserialize(apiResponse); } return deserializedJson; } } }