Beispiel #1
0
 public async Task <GetLatestVendorRegistrationCaseUpdateDateTimeResponse> GetLatestVendorRegistrationCaseUpdateDateTime()
 {
     return(await _client.Get <GetLatestVendorRegistrationCaseUpdateDateTimeResponse>(new GetLatestVendorRegistrationCaseUpdateDateTimeRequest()));
 }
        public async Task <AccountLegalEntity> GetLegalEntity(long accountId, long accountLegalEntityId)
        {
            var response = await _client.Get <AccountLegalEntity>(new InnerApi.Requests.GetLegalEntityRequest(accountId, accountLegalEntityId));

            return(response);
        }
Beispiel #3
0
        public async Task <long> GetApplicationLegalEntity(long accountId, Guid applicationId)
        {
            var response = await _client.Get <long>(new GetApplicationLegalEntityRequest(accountId, applicationId));

            return(response);
        }
Beispiel #4
0
 public async Task <GetIncentiveDetailsResponse> GetIncentiveDetails()
 {
     return(await _client.Get <GetIncentiveDetailsResponse>(new GetIncentiveDetailsRequest()));
 }