All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.salesmanager.shop.model.customer.attribute.PersistableCustomerAttribute Maven / Gradle / Ivy

The newest version!
package com.salesmanager.shop.model.customer.attribute;

public class PersistableCustomerAttribute extends CustomerAttributeEntity {

	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;
	private CustomerOption customerOption;
	private CustomerOptionValue customerOptionValue;
	public void setCustomerOptionValue(CustomerOptionValue customerOptionValue) {
		this.customerOptionValue = customerOptionValue;
	}
	public CustomerOptionValue getCustomerOptionValue() {
		return customerOptionValue;
	}
	public void setCustomerOption(CustomerOption customerOption) {
		this.customerOption = customerOption;
	}
	public CustomerOption getCustomerOption() {
		return customerOption;
	}


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy