Esempio n. 1
0
        public async Task <JToken> cdcallDriverAllocGET(cdQueryAttr QueryObject)
        {
            cdCallAPI mycallAPI      = new cdCallAPI();
            var       getDriverAlloc = await mycallAPI.cdCallGetAPI(App.cdDriverAllocURLGet, QueryObject, App.cdDriverAllocationKey);

            return(getDriverAlloc);
        }
Esempio n. 2
0
        public async Task <JToken> cdcallTrackLocGET(cdQueryAttr QueryObject)
        {
            cdCallAPI mycallAPI   = new cdCallAPI();
            var       getAccounts = await mycallAPI.cdCallGetAPI(App.cdTrackLocGet, QueryObject, App.cdDriverLocationKey);

            return(getAccounts);
        }
Esempio n. 3
0
        public async Task <JToken> cdcallEventsGET(cdQueryAttr QueryObject)
        {
            cdCallAPI mycallAPI = new cdCallAPI();
            var       response  = await mycallAPI.cdCallGetAPI(App.cdEventAPIGet, QueryObject, App.cdEventKey);

            return(response);
        }
Esempio n. 4
0
        public async Task <JToken> cdcallClubsGET(cdQueryAttr QueryObject)
        {
            cdCallAPI mycallAPI      = new cdCallAPI();
            var       getClubMembers = await mycallAPI.cdCallGetAPI(App.cdClubAPIGet, QueryObject, App.cdClubKey);

            return(getClubMembers);
        }
Esempio n. 5
0
        // Function to get Accounts
        public async Task <JToken> cdcallAccountsGET(cdQueryAttr QueryObject)
        {
            cdCallAPI mycallAPI    = new cdCallAPI();
            var       getLocations = await mycallAPI.cdCallGetAPI(App.cdAccountAPIGetGlobal, QueryObject, App.cdAccountKey);

            return(getLocations);
        }