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

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

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

            return(coll);
        }