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

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

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

            return(coll);
        }