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

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

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

            return(coll);
        }