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);
        }
示例#3
0
 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);
 }
示例#4
0
 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);
     }
 }
示例#5
0
 public void DetachPatientStatusType(PatientStatusType obj)
 {
     db.PatientStatusTypes.Detach(obj);
 }
示例#6
0
 /// <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;
 }
示例#7
0
 /// <summary>
 /// Deprecated Method for adding a new object to the PatientStatusTypes EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToPatientStatusTypes(PatientStatusType patientStatusType)
 {
     base.AddObject("PatientStatusTypes", patientStatusType);
 }