AjaxAction_class = function() {};
Object.extend(AjaxAction_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	Logout: function() {
		return this.invoke("Logout", {}, this.Logout.getArguments().slice(0));
	},
	GetRecipe: function(RecipeID) {
		return this.invoke("GetRecipe", {"RecipeID":RecipeID}, this.GetRecipe.getArguments().slice(1));
	},
	AskExpert: function(message) {
		return this.invoke("AskExpert", {"message":message}, this.AskExpert.getArguments().slice(1));
	},
	AddReview: function(RecipeID, EmailAddress, Rating, FirstName, LastName, Location, Title, Review) {
		return this.invoke("AddReview", {"RecipeID":RecipeID, "EmailAddress":EmailAddress, "Rating":Rating, "FirstName":FirstName, "LastName":LastName, "Location":Location, "Title":Title, "Review":Review}, this.AddReview.getArguments().slice(8));
	},
	url: '/ajaxpro/AjaxAction,App_Code.-mtvls2x.ashx'
}));
AjaxAction = new AjaxAction_class();


