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

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

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
示例#3
0
        public ApiCallCollection FetchByID(object ApiCallKey)
        {
            ApiCallCollection coll = new ApiCallCollection().Where("api_call_key", ApiCallKey).Load();

            return(coll);
        }