public Task <bool> AttemptEnrollPractice(string url, List <Practice> practices)
        {
            url = GetActivateUrl(url, "enroll");

            return(_restClient.AttemptMakeApiCall($"{url}", HttpMethod.Post, practices));
        }
Exemplo n.º 2
0
        public async Task <bool> AttempSendClients(string url, SyncClientDTO client)
        {
            url = GetActivateUrl(url, "demographics");

            return(await _restClient.AttemptMakeApiCall($"{url}", HttpMethod.Post, client));
        }