public PublishipAdvanceOrderTableCollection FetchAll()
 {
     PublishipAdvanceOrderTableCollection coll = new PublishipAdvanceOrderTableCollection();
     Query qry = new Query(PublishipAdvanceOrderTable.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
示例#2
0
        public PublishipAdvanceOrderTableCollection FetchByQuery(Query qry)
        {
            PublishipAdvanceOrderTableCollection coll = new PublishipAdvanceOrderTableCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
示例#3
0
        public PublishipAdvanceOrderTableCollection FetchAll()
        {
            PublishipAdvanceOrderTableCollection coll = new PublishipAdvanceOrderTableCollection();
            Query qry = new Query(PublishipAdvanceOrderTable.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
 public PublishipAdvanceOrderTableCollection FetchByContactID(object ContactID)
 {
     PublishipAdvanceOrderTableCollection coll = new PublishipAdvanceOrderTableCollection().Where("ContactID", ContactID).Load();
     return coll;
 }
 public PublishipAdvanceOrderTableCollection FetchByOrderID(object OrderID)
 {
     PublishipAdvanceOrderTableCollection coll = new PublishipAdvanceOrderTableCollection().Where("OrderID", OrderID).Load();
     return coll;
 }
 public PublishipAdvanceOrderTableCollection FetchByQuery(Query qry)
 {
     PublishipAdvanceOrderTableCollection coll = new PublishipAdvanceOrderTableCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader()); 
     return coll;
 }
示例#7
0
        public PublishipAdvanceOrderTableCollection FetchByID(object OrderID)
        {
            PublishipAdvanceOrderTableCollection coll = new PublishipAdvanceOrderTableCollection().Where("OrderID", OrderID).Load();

            return(coll);
        }
        public PublishipAdvanceOrderTableCollection FetchByContactID(object ContactID)
        {
            PublishipAdvanceOrderTableCollection coll = new PublishipAdvanceOrderTableCollection().Where("ContactID", ContactID).Load();

            return(coll);
        }