Exemplo n.º 1
0
        public Task <ProfileResponse> ExecuteAsync(ProfileArgument argument)
        {
            argument.ApiKey  = ApiKey;
            argument.BaseUrl = Url;

            return(ExecuteAsync <ProfileResponse>(argument.ToString()));
        }
Exemplo n.º 2
0
        public ProfileResponse Execute(ProfileArgument argument)
        {
            argument.ApiKey  = ApiKey;
            argument.BaseUrl = Url;

            return(Execute <ProfileResponse>(argument.ToString()));
        }