Esempio n. 1
0
        public JsonResult UpdateConResume(int contactid, string resumes)
        {
            string msg = "";

            try
            {
                context.spupdatecontactresumes(resumes, contactid);
                context.SaveChanges();
            }
            catch (Exception ex)
            {
                cm.ErrorExceptionLogingByService(ex.ToString(), "ProspectViewCompany" + ":" + new StackTrace().GetFrame(0).GetMethod().Name, "UpdateConResume", "NA", "NA", "NA", "WEB");
            }

            return(Json(msg, JsonRequestBehavior.AllowGet));
        }