// Gets one or more Bing Merchant Center stores registered with the customer.

        private async Task<IList<BMCStore>> GetBMCStoresByCustomerIdAsync()
        {
            var request = new GetBMCStoresByCustomerIdRequest();

            return (await Service.CallAsync((s, r) => s.GetBMCStoresByCustomerIdAsync(r), request)).BMCStores;
        }
        // Gets one or more Bing Merchant Center stores registered with the customer.

        private async Task <IList <BMCStore> > GetBMCStoresByCustomerIdAsync()
        {
            var request = new GetBMCStoresByCustomerIdRequest();

            return((await Service.CallAsync((s, r) => s.GetBMCStoresByCustomerIdAsync(r), request)).BMCStores);
        }