Exemplo n.º 1
0
        public IActionResult GetNewestCases_ByCountryID([FromBody] string CountryID)
        {
            var res  = new SingleRsp();
            var temp = _svc.GetNewestCases_ByCountryID(CountryID);

            res.Data = temp;

            return(Ok(res));
        }