if(typeof JewelryExchange == "undefined") JewelryExchange={};
if(typeof JewelryExchange.Web == "undefined") JewelryExchange.Web={};
if(typeof JewelryExchange.Web.JewelryList == "undefined") JewelryExchange.Web.JewelryList={};
JewelryExchange.Web.JewelryList_class = function() {};
Object.extend(JewelryExchange.Web.JewelryList_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	GetJewelryDetails: function(jewelryID) {
		return this.invoke("GetJewelryDetails", {"jewelryID":jewelryID}, this.GetJewelryDetails.getArguments().slice(1));
	},
	AddToCart: function(jewelryID, metalType, ringSize, laborChargesText) {
		return this.invoke("AddToCart", {"jewelryID":jewelryID, "metalType":metalType, "ringSize":ringSize, "laborChargesText":laborChargesText}, this.AddToCart.getArguments().slice(4));
	},
	GetLaborCharges: function(jewelryID, metalType, ringSize, laborChargesText) {
		return this.invoke("GetLaborCharges", {"jewelryID":jewelryID, "metalType":metalType, "ringSize":ringSize, "laborChargesText":laborChargesText}, this.GetLaborCharges.getArguments().slice(4));
	},
	url: '/ajaxpro/JewelryExchange.Web.JewelryList,App_Code.ashx'
}));
JewelryExchange.Web.JewelryList = new JewelryExchange.Web.JewelryList_class();


