/**
 * address holder
 */
 
DataManagerRecord.prototype = new MQAddress();
DataManagerRecord.prototype.constructor = DataManagerRecord;
function DataManagerRecord(){
	this.storeName = "";
	this.streetName = "";
	this.city= "";
	this.state ="";
	this.postalCode="";
	this.country="";
	this.phone = "";

	this.setStoreName = function(sn){ this.storeName  = sn; };
	this.setStreet = function(n){ this.streetName  =  n; };
	this.setCity = function(d){ this.city = d;};
	this.setState = function(s){ this.state = s;};
	this.setPostalCode = function(p){ this.postalCode = p;};
	this.setPhone = function(p){ this.phone = p;};

	this.getStoreName = function(){ return this.storeName; };
	this.getStreet = function(){ return this.streetName; };
	this.getCity = function(){ return this.city;};
	this.getState = function(){ return this.state;};
	this.getCountry = function(){ return this.country;};
	this.getPhone = function(){ return this.phone;};
}
