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

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

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

            return(coll);
        }