public JsonResult SaveEmailAccount(EmailAccount UM) { try { var user = MS.SaveEmailAccountsData(UM); return(Json(user, JsonRequestBehavior.AllowGet)); } catch (Exception ex) { CommonServices.ErrorLogging(ex); throw ex; } }