if(typeof FancyFeast == "undefined") FancyFeast={};
if(typeof FancyFeast.BLL == "undefined") FancyFeast.BLL={};
FancyFeast.BLL.ShoppingListBL_class = function() {};
Object.extend(FancyFeast.BLL.ShoppingListBL_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	AddItem: function(url) {
		return this.invoke("AddItem", {"url":url}, this.AddItem.getArguments().slice(1));
	},
	DeleteItem: function(url) {
		return this.invoke("DeleteItem", {"url":url}, this.DeleteItem.getArguments().slice(1));
	},
	SendToMobile: function(smsidx, mobile) {
		return this.invoke("SendToMobile", {"smsidx":smsidx, "mobile":mobile}, this.SendToMobile.getArguments().slice(2));
	},
	SendToEmail: function(email) {
		return this.invoke("SendToEmail", {"email":email}, this.SendToEmail.getArguments().slice(1));
	},
	url: '/ajaxpro/FancyFeast.BLL.ShoppingListBL,FancyFeast.BLL.ashx'
}));
FancyFeast.BLL.ShoppingListBL = new FancyFeast.BLL.ShoppingListBL_class();

