示例#1
0
        public SalesPersonQuotaHistoryCollection FetchByQuery(Query qry)
        {
            SalesPersonQuotaHistoryCollection coll = new SalesPersonQuotaHistoryCollection();

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

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }