Ejemplo n.º 1
0
        public DataTable obtenerHistorial(String idUsuario)
        {
            DAOHistorial dAOHistorial = new DAOHistorial();
            DataTable    historial    = dAOHistorial.obtenerHistorial(idUsuario);

            return(historial);
        }
Ejemplo n.º 2
0
        public List <ReporteHistorialMedico> cargarInformeHistorial(Object usuario)
        {
            DataTable    informacionHistorial = new DataTable(); //dt
            DAOHistorial dAOHistorial         = new DAOHistorial();
            EUsuario     eUsuario             = new EUsuario();

            eUsuario = (EUsuario)usuario;

            DataTable intermedio = dAOHistorial.obtenerHistorial(eUsuario.Identificacion);
            List <ReporteHistorialMedico> reporteHistorialMedicos = new List <ReporteHistorialMedico>();

            for (int i = 0; i < intermedio.Rows.Count; i++)
            {
                ReporteHistorialMedico reporteHistorialMedico = new ReporteHistorialMedico();

                DateTime fecha = new DateTime();
                fecha = DateTime.Parse(intermedio.Rows[i]["fecha"].ToString());
                reporteHistorialMedico.Fecha = Convert.ToString(fecha.ToShortDateString());
                if (intermedio.Rows[i]["motivo_consulta"].ToString().Equals(""))
                {
                    reporteHistorialMedico.MotivoConsulta = "No especifica";
                }
                else
                {
                    reporteHistorialMedico.MotivoConsulta = intermedio.Rows[i]["motivo_consulta"].ToString();
                }
                reporteHistorialMedico.Observacion  = intermedio.Rows[i]["observacion"].ToString();
                reporteHistorialMedico.Especialidad = intermedio.Rows[i]["servicio"].ToString();
                reporteHistorialMedico.Medico       = intermedio.Rows[i]["nombre_medico"].ToString();

                reporteHistorialMedicos.Add(reporteHistorialMedico);
            }

            return(reporteHistorialMedicos);
        }
Ejemplo n.º 3
0
        public DataTable agregarHistorial(EHistorial eHistorial)
        {
            DAOHistorial dAOHistorial = new DAOHistorial();
            DataTable    historial    = dAOHistorial.agregarHistorial(eHistorial);

            return(historial);
        }