public JsonResult Get(int id)
 {
     try
     {
         return(Json(serviceAdicional.PesquisarPorId(id)));
     }
     catch (Exception ex)
     {
         return(Json(new { Erro = ex.Message + " " + ex.InnerException }));
     }
 }
 public JsonResult Get(int id)
 {
     try
     {
         return(Json(serviceAdicional.PesquisarPorId(id)));
     }
     catch (Exception ex)
     {
         throw;
     }
 }