Beispiel #1
0
        public PriceOrderLogCollection FetchByQuery(Query qry)
        {
            PriceOrderLogCollection coll = new PriceOrderLogCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Beispiel #2
0
        public PriceOrderLogCollection FetchAll()
        {
            PriceOrderLogCollection coll = new PriceOrderLogCollection();
            Query qry = new Query(PriceOrderLog.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Beispiel #3
0
        public PriceOrderLogCollection FetchByID(object PoLogId)
        {
            PriceOrderLogCollection coll = new PriceOrderLogCollection().Where("po_log_id", PoLogId).Load();

            return(coll);
        }