src/main/java/com/microsoft/store/partnercenter/customers/products/CustomerProductOperations.java [34:47]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	public CustomerProductOperations(IPartner rootPartnerOperations, String customerId, String productId)
	{
		super(rootPartnerOperations, new Tuple<String, String>(customerId, productId));

		if (StringHelper.isNullOrWhiteSpace(customerId))
		{
			throw new IllegalArgumentException("customerId must be set");
		}

		if (StringHelper.isNullOrWhiteSpace(productId))
		{
			throw new IllegalArgumentException("productId must be set");
		}
	}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/microsoft/store/partnercenter/customers/products/CustomerSkuCollectionOperations.java [32:45]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	public CustomerSkuCollectionOperations(IPartner rootPartnerOperations, String customerId, String productId)
	{
		super(rootPartnerOperations, new Tuple<String, String>(customerId, productId));

		if (StringHelper.isNullOrWhiteSpace(customerId))
		{
			throw new IllegalArgumentException("customerId must be set");
		}

		if (StringHelper.isNullOrWhiteSpace(productId))
		{
			throw new IllegalArgumentException("productId must be set");
		}
	}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



