public ActionResult Create(Paciente pacienteToCreate)
        {
            try
            {
                // TODO: Add insert logic here
                if (!ModelState.IsValid)
                {
                    var query = _db.PersonaSet.Select(c => new
                    {
                        ID_PERSONA = c.ID_PERSONA,
                        PRIMER_NOMBRE = c.PRIMER_NOMBRE + " " + c.PRIMER_APELLIDO
                    });

                    ViewBag.ID_PERSONA = new SelectList(query.AsEnumerable(), "ID_PERSONA", "PRIMER_NOMBRE");

                    return View(pacienteToCreate);
                }

                _db.AddToPacienteSet(pacienteToCreate);

                _db.SaveChanges();

                return RedirectToAction("Index");
            }
            catch
            {
                return View();
            }
        }
 /// <summary>
 /// Método desusado para agregar un nuevo objeto al EntitySet PacienteSet. Considere la posibilidad de usar el método .Add de la propiedad ObjectSet&lt;T&gt; asociada.
 /// </summary>
 public void AddToPacienteSet(Paciente paciente)
 {
     base.AddObject("PacienteSet", paciente);
 }
        public ActionResult Edit(int id, Paciente pacienteToEdit)
        {
            try
            {
                // TODO: Add update logic here
                var originalPac = (from m in _db.DoctorSet

                                    where m.JVPM_DOC == pacienteToEdit.COD_PAC

                                    select m).First();

                if (!ModelState.IsValid)

                    return View(originalPac);

                _db.ApplyCurrentValues(originalPac.EntityKey.EntitySetName, pacienteToEdit);

                _db.SaveChanges();

                return RedirectToAction("Index");
            }
            catch
            {
                return View();
            }
        }
 /// <summary>
 /// Crear un nuevo objeto Paciente.
 /// </summary>
 /// <param name="iD_PERSONA">Valor inicial de la propiedad ID_PERSONA.</param>
 /// <param name="cOD_PAC">Valor inicial de la propiedad COD_PAC.</param>
 public static Paciente CreatePaciente(global::System.Int32 iD_PERSONA, global::System.Int32 cOD_PAC)
 {
     Paciente paciente = new Paciente();
     paciente.ID_PERSONA = iD_PERSONA;
     paciente.COD_PAC = cOD_PAC;
     return paciente;
 }