public ActionResult Create(PatientStatusType obj) { try { if (ModelState.IsValid) { int id = db.AddPatientStatusType(obj); return RedirectToAction("Index"); } } catch (DataException ex) { ModelState.AddModelError("", ex.Message.ToString() + " Невозможно сохранить изменения. Попробуйте повторить действия. Если проблема повторится, обратитесь к системному администратору."); } return RedirectToAction("Index"); }
public ActionResult Edit(PatientStatusType obj) { try { if (ModelState.IsValid) { dbActionResult resultAction = new dbActionResult(); resultAction = db.EditPatientStatusType(obj); int id = resultAction.intResult; if (id >= 0) { return RedirectToAction("Index"); } if (id == -1) { db.DetachPatientStatusType(obj); PatientStatusType oldObj = db.GetPatientStatusType(obj.PatientStatusTypeID); ModelState.AddModelError("", "Ошибка параллельного доступа к данным. Если проблема повторится, обратитесь к системному администратору."); if (oldObj.Code != obj.Code) ModelState.AddModelError("Code", "Текущее значение: " + oldObj.Code.ToString()); if (oldObj.DescriptionEng != obj.DescriptionEng) ModelState.AddModelError("DescriptionEng", "Текущее значение: " + oldObj.DescriptionEng.ToString()); if (oldObj.DescriptionRus.ToString() != obj.DescriptionRus.ToString()) ModelState.AddModelError("DescriptionRus", "Текущее значение: " + oldObj.DescriptionRus.ToString()); obj.Timestamp = oldObj.Timestamp; } if (id == -2) { ModelState.AddModelError("", resultAction.exData.Message.ToString() + " | " + resultAction.exData.GetType().ToString() + " | " + "Невозможно сохранить изменения. Нажмите обновить страницу и повторить действия. Если проблема повторится, обратитесь к системному администратору."); } } } catch (DataException ex) { ModelState.AddModelError("", ex.Message.ToString() + " | " + ex.GetType().ToString() + " | " + "Невозможно сохранить изменения. Попробуйте повторить действия. Если проблема повторится, обратитесь к системному администратору."); } return View(obj); }
public int AddPatientStatusType(PatientStatusType obj) { obj.DateUpdate = DateTime.Now; obj.DateAdd = DateTime.Now; obj.Suser = System.Web.Security.Membership.GetUser().ToString(); db.PatientStatusTypes.AddObject(obj); db.SaveChanges(); return (obj.PatientStatusTypeID); }
public dbActionResult EditPatientStatusType(PatientStatusType obj) { try { obj.DateUpdate = DateTime.Now; obj.Suser = System.Web.Security.Membership.GetUser().ToString(); db.PatientStatusTypes.Attach(obj); db.ObjectStateManager.ChangeObjectState(obj, EntityState.Modified); db.SaveChanges(); dbActionResult returnObj = new dbActionResult(); returnObj.intResult = obj.PatientStatusTypeID; returnObj.exConcur = null; returnObj.exData = null; return (returnObj); } catch (OptimisticConcurrencyException ex) { dbActionResult returnObj = new dbActionResult(); returnObj.intResult = -1; returnObj.exConcur = ex; returnObj.exData = null; return (returnObj); } catch (DataException ex) { dbActionResult returnObj = new dbActionResult(); returnObj.intResult = -2; returnObj.exConcur = null; returnObj.exData = ex; return (returnObj); } }
public void DetachPatientStatusType(PatientStatusType obj) { db.PatientStatusTypes.Detach(obj); }
/// <summary> /// Create a new PatientStatusType object. /// </summary> /// <param name="patientStatusTypeID">Initial value of the PatientStatusTypeID property.</param> public static PatientStatusType CreatePatientStatusType(global::System.Int32 patientStatusTypeID) { PatientStatusType patientStatusType = new PatientStatusType(); patientStatusType.PatientStatusTypeID = patientStatusTypeID; return patientStatusType; }
/// <summary> /// Deprecated Method for adding a new object to the PatientStatusTypes EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToPatientStatusTypes(PatientStatusType patientStatusType) { base.AddObject("PatientStatusTypes", patientStatusType); }