Ejemplo n.º 1
0
        public ConAgendaGrupalPacienteCollection FetchByQuery(Query qry)
        {
            ConAgendaGrupalPacienteCollection coll = new ConAgendaGrupalPacienteCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Ejemplo n.º 2
0
        public ConAgendaGrupalPacienteCollection FetchAll()
        {
            ConAgendaGrupalPacienteCollection coll = new ConAgendaGrupalPacienteCollection();
            Query qry = new Query(ConAgendaGrupalPaciente.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }