예제 #1
0
        public FacTipoFacturaCollection FetchByQuery(Query qry)
        {
            FacTipoFacturaCollection coll = new FacTipoFacturaCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
예제 #2
0
        public FacTipoFacturaCollection FetchAll()
        {
            FacTipoFacturaCollection coll = new FacTipoFacturaCollection();
            Query qry = new Query(FacTipoFactura.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }