Exemplo n.º 1
0
        private static List <CovidMyRS> convertRSToMyRS(CovidRS covidRS, string date, string country, string regionInput)
        {
            List <CovidMyRS> covidMyRsList = new List <CovidMyRS>();

            foreach (var dates in covidRS.dates)
            {
                dates.Value.countries.TryGetValue(country, out CovidRS.Dates.Countries countries);
                foreach (var region in countries.regions)
                {
                    if (region.name_es.ToLower() == regionInput.ToLower())
                    {
                        CovidMyRS covidMyRS = new CovidMyRS();
                        covidMyRS.nameRegion     = region.name_es;
                        covidMyRS.country        = countries.name_es;
                        covidMyRS.todayNewCases  = (int)region.today_new_confirmed;
                        covidMyRS.todayNewDeaths = (int)region.today_new_deaths;
                        covidMyRS.totalCases     = (int)region.today_confirmed;
                        covidMyRS.totalDeaths    = (int)region.today_deaths;
                        covidMyRS.date           = region.date;
                        covidMyRsList.Add(covidMyRS);
                        break;
                    }
                }
            }


            return(covidMyRsList);
        }
Exemplo n.º 2
0
        public static List <CovidMyRS> doCovidProcess(string country, string regionInput, string dateFrom, string dateTo = "")
        {
            string ret = string.Empty;

            HttpClient          client        = new HttpClient();
            HttpResponseMessage covidResponse = new HttpResponseMessage();

            client.BaseAddress = new Uri("https://api.covid19tracking.narrativa.com/");
            string url = "api/country/" + country.ToLower() + "/region/" + regionInput.ToLower() + "?date_from=" + dateFrom + "&date_to=" + dateTo;

            covidResponse = client.GetAsync(url).Result;

            //api/country/spain/region/madrid?date_from=2020-03-20&date_to=2020-03-22
            //api/country/spain/region/baleares?date_from=04-05-2020&date_to=05-05-2020

            string response = covidResponse.Content.ReadAsStringAsync().Result;

            CovidRS covidRS = new CovidRS();

            covidRS = JsonConvert.DeserializeObject <CovidRS>(response);

            List <CovidMyRS> covidMyRS = convertRSToMyRS(covidRS, dateFrom, country, regionInput);

            return(covidMyRS);
        }