Esempio n. 1
0
        public GuardiaMedicosRegistroIngresoCollection FetchByQuery(Query qry)
        {
            GuardiaMedicosRegistroIngresoCollection coll = new GuardiaMedicosRegistroIngresoCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Esempio n. 2
0
        public GuardiaMedicosRegistroIngresoCollection FetchAll()
        {
            GuardiaMedicosRegistroIngresoCollection coll = new GuardiaMedicosRegistroIngresoCollection();
            Query qry = new Query(GuardiaMedicosRegistroIngreso.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Esempio n. 3
0
        public GuardiaMedicosRegistroIngresoCollection FetchByID(object Id)
        {
            GuardiaMedicosRegistroIngresoCollection coll = new GuardiaMedicosRegistroIngresoCollection().Where("id", Id).Load();

            return(coll);
        }