var Gezisitesi = window.Gezisitesi || {};

Gezisitesi.ProductData = function() {
	this.ProductId = 0;
	this.ProductName = '';
	this.Type = '';
};

Gezisitesi.ProductData.prototype.Bind = function(id,name,type)
{
	this.ProductId = id;
	this.ProductName = name;
	this.ProductType = type;
}
