public ActionResult ClusterUpdate(string Insert_Update, int BranchId, int ClusterId, string ClusterName, string ClusterAddress, string ContactPerson, string ContactMobile, string ContactEmailId) { List <string> Response = new List <string>(); using (SecurityDBEntities entites = new SecurityDBEntities()) { Response = entites.ClusterMInsert_Update_set(Convert.ToInt32(Insert_Update), BranchId, ClusterId, ClusterName, ClusterAddress, ContactPerson, ContactMobile, ContactEmailId, Convert.ToInt32(Session["Userid"])).ToList(); } return(Json(Response)); }