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

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

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

            return(coll);
        }