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

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

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

            return(coll);
        }