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

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemplo n.º 2
0
        public AprCategoriaPesoNacimientoCollection FetchAll()
        {
            AprCategoriaPesoNacimientoCollection coll = new AprCategoriaPesoNacimientoCollection();
            Query qry = new Query(AprCategoriaPesoNacimiento.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemplo n.º 3
0
        public AprCategoriaPesoNacimientoCollection FetchByID(object IdCategoriaPesoNacimiento)
        {
            AprCategoriaPesoNacimientoCollection coll = new AprCategoriaPesoNacimientoCollection().Where("idCategoriaPesoNacimiento", IdCategoriaPesoNacimiento).Load();

            return(coll);
        }