コード例 #1
0
        public ConAgendaGrupalPacienteCollection FetchByQuery(Query qry)
        {
            ConAgendaGrupalPacienteCollection coll = new ConAgendaGrupalPacienteCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
コード例 #2
0
        public ConAgendaGrupalPacienteCollection FetchAll()
        {
            ConAgendaGrupalPacienteCollection coll = new ConAgendaGrupalPacienteCollection();
            Query qry = new Query(ConAgendaGrupalPaciente.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
コード例 #3
0
        public ConAgendaGrupalPacienteCollection FetchByID(object IdAgendaGrupalPaciente)
        {
            ConAgendaGrupalPacienteCollection coll = new ConAgendaGrupalPacienteCollection().Where("idAgendaGrupalPaciente", IdAgendaGrupalPaciente).Load();

            return(coll);
        }