Ejemplo n.º 1
0
        public ActionResult DeleteConfirmed(int id)
        {
            var p = new PacienteApiProcess();

            Paciente paciente = p.ReadBy(id);

            p.Delete(paciente);
            return(RedirectToAction("Index"));
        }