src/main/java/com/microsoft/store/partnercenter/orders/OrderOperations.java [33:46]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public OrderOperations(IPartner rootPartnerOperations, String customerId, String orderId)
    {
        super(rootPartnerOperations, new Tuple<String, String>(customerId, orderId));

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

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



src/main/java/com/microsoft/store/partnercenter/orders/OrderProvisioningStatusOperations.java [31:44]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public OrderProvisioningStatusOperations(IPartner rootPartnerOperations, String customerId, String orderId)
    {
        super(rootPartnerOperations, new Tuple<String, String>(customerId, orderId));

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

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



src/main/java/com/microsoft/store/partnercenter/subscriptions/OrderSubscriptionCollectionOperations.java [35:48]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	public OrderSubscriptionCollectionOperations(IPartner rootPartnerOperations, String customerId, String orderId)
	{
		super(rootPartnerOperations, new Tuple<String, String>(customerId, orderId));
	   
		if (StringHelper.isNullOrWhiteSpace(customerId))
		{
			throw new IllegalArgumentException("customerId must be set.");
		}

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



