public ListInventorySupplyResponse InvokeListInventorySupply()
 {
     // Create a request.
     ListInventorySupplyRequest request = new ListInventorySupplyRequest();
     string sellerId = "example";
     request.SellerId = sellerId;
     string mwsAuthToken = "example";
     request.MWSAuthToken = mwsAuthToken;
     string marketplace = "example";
     request.Marketplace = marketplace;
     string supplyRegion = "example";
     request.SupplyRegion = supplyRegion;
     SellerSkuList sellerSkus = new SellerSkuList();
     request.SellerSkus = sellerSkus;
     DateTime queryStartDateTime = new DateTime();
     request.QueryStartDateTime = queryStartDateTime;
     string responseGroup = "example";
     request.ResponseGroup = responseGroup;
     return this.client.ListInventorySupply(request);
 }
 private ListInventorySupplyResponse InvokeListInventorySupply()
 {
     ListInventorySupplyRequest request = new ListInventorySupplyRequest();
     request.SellerId = _sellerId;
     request.Marketplace = AccountSettingsConfigSection.Jk529_marketplaceId.Value;
     request.QueryStartDateTime = new DateTime(2014, 1, 1, 0, 0, 0);
     return _client.ListInventorySupply(request);
 }