src/main/java/com/microsoft/store/partnercenter/products/ProductCollectionByCountryByTargetViewByTargetSegmentOperations.java [57:77]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	public ResourceCollection<Product> get()
	{
		Collection<KeyValuePair<String, String>> parameters = new ArrayList<KeyValuePair<String, String>>();

		parameters.add
		(
			new KeyValuePair<String, String>
			(
				PartnerService.getInstance().getConfiguration().getApis().get("GetProducts").getParameters().get("TargetView"),
				this.getContext().getItem1()
			) 
		);

		parameters.add
		(
			new KeyValuePair<String, String>
			(
				PartnerService.getInstance().getConfiguration().getApis().get("GetProducts").getParameters().get("Country"),
				this.getContext().getItem2()
			) 
		);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/microsoft/store/partnercenter/products/ProductCollectionByCountryByTargetViewOperations.java [62:82]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	public ResourceCollection<Product> get()
	{
		Collection<KeyValuePair<String, String>> parameters = new ArrayList<KeyValuePair<String, String>>();

		parameters.add
		(
			new KeyValuePair<String, String>
			(
				PartnerService.getInstance().getConfiguration().getApis().get("GetProducts").getParameters().get("TargetView"),
				this.getContext().getItem1()
			) 
		);

		parameters.add
		(
			new KeyValuePair<String, String>
			(
				PartnerService.getInstance().getConfiguration().getApis().get("GetProducts").getParameters().get("Country"),
				this.getContext().getItem2()
			) 
		);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



