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

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

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Ejemplo n.º 3
0
        public ConMotivoInactivacionAgendaCollection FetchByID(object IdMotivoInactivacion)
        {
            ConMotivoInactivacionAgendaCollection coll = new ConMotivoInactivacionAgendaCollection().Where("idMotivoInactivacion", IdMotivoInactivacion).Load();

            return(coll);
        }