public IActionResult GetCase_By_CountryID([FromBody] string CountryID) { var res = new SingleRsp(); var temp = _svc.GetCase_By_CountryID(CountryID); res.Data = temp; return(Ok(res)); }