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

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

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

            return(coll);
        }