Exemple #1
0
        public DeliveryNoteTableCollection FetchByQuery(Query qry)
        {
            DeliveryNoteTableCollection coll = new DeliveryNoteTableCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemple #2
0
        public DeliveryNoteTableCollection FetchAll()
        {
            DeliveryNoteTableCollection coll = new DeliveryNoteTableCollection();
            Query qry = new Query(DeliveryNoteTable.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemple #3
0
        public DeliveryNoteTableCollection FetchByID(object DeliveryNoteID)
        {
            DeliveryNoteTableCollection coll = new DeliveryNoteTableCollection().Where("DeliveryNoteID", DeliveryNoteID).Load();

            return(coll);
        }