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

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

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

            return(coll);
        }