/*
 * Created on Jul 8, 2004
 *
 * To change the template for this generated file go to
 * Window&gt;Preferences&gt;Java&gt;Code Generation&gt;Code and Comments
 */
package customerSession;

import java.io.Serializable;

/**
 * @author DACOHEN
 *
 * To change the template for this generated type comment go to
 * Window&gt;Preferences&gt;Java&gt;Code Generation&gt;Code and Comments
 */
public class CustomerMORInput implements Serializable {
	
	private short warehouse;
	private String state;
	
	/**
	 * 
	 */
	public CustomerMORInput() {
		super();
		// TODO Auto-generated constructor stub
	}

	
	/**
	 * @return
	 */
	public String getState() {
		return state;
	}

	/**
	 * @return
	 */
	public short getWarehouse() {
		return warehouse;
	}

	
	/**
	 * @param string
	 */
	public void setState(String string) {
		state = string;
	}

	/**
	 * @param s
	 */
	public void setWarehouse(short s) {
		warehouse = s;
	}

}
