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));
	},
	AppendToMyList: function(EntityID) {
		return this.invoke("AppendToMyList", {"EntityID":EntityID}, this.AppendToMyList.getArguments().slice(1));
	},
	RemoveFromMyListByIndex: function(index) {
		return this.invoke("RemoveFromMyListByIndex", {"index":index}, this.RemoveFromMyListByIndex.getArguments().slice(1));
	},
	MoveItemDown: function(index) {
		return this.invoke("MoveItemDown", {"index":index}, this.MoveItemDown.getArguments().slice(1));
	},
	MoveItemUp: function(index) {
		return this.invoke("MoveItemUp", {"index":index}, this.MoveItemUp.getArguments().slice(1));
	},
	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();


