if(typeof DynamicWebSite == "undefined") DynamicWebSite={};
if(typeof DynamicWebSite.Framework == "undefined") DynamicWebSite.Framework={};
if(typeof DynamicWebSite.Framework.MyListAjax == "undefined") DynamicWebSite.Framework.MyListAjax={};
DynamicWebSite.Framework.MyListAjax_class = function() {};
Object.extend(DynamicWebSite.Framework.MyListAjax_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	GetMyListInfo: function() {
		return this.invoke("GetMyListInfo", {}, this.GetMyListInfo.getArguments().slice(0));
	},
	ToggleOnMyList: function(EntityID) {
		return this.invoke("ToggleOnMyList", {"EntityID":EntityID}, this.ToggleOnMyList.getArguments().slice(1));
	},
	AddToMyList: function(EntityID) {
		return this.invoke("AddToMyList", {"EntityID":EntityID}, this.AddToMyList.getArguments().slice(1));
	},
	RemoveFromMyList: function(EntityID) {
		return this.invoke("RemoveFromMyList", {"EntityID":EntityID}, this.RemoveFromMyList.getArguments().slice(1));
	},
	url: '/ajaxpro/DynamicWebSite.Framework.MyListAjax,DynamicWebSite.ashx'
}));
DynamicWebSite.Framework.MyListAjax = new DynamicWebSite.Framework.MyListAjax_class();

