public JsonResult ConfermaAnnullaRichiestaMAB(decimal idAttivazioneMAB, string msg) { string errore = ""; try { using (dtMaggiorazioneAbitazione dtma = new dtMaggiorazioneAbitazione()) { dtma.AnnullaRichiestaMAB(idAttivazioneMAB, msg); } } catch (Exception ex) { errore = ex.Message; } return (Json( new { err = errore })); }