示例#1
0
 public IActionResult Get(int id)
 {
     try
     {
         var municipio = municipioService.Find(id);
         return(Ok(municipio));
     }
     catch (Exception)
     {
         throw;
     }
 }