addNamespace("AddReviewService");
AddReviewService_class = Class.create();
AddReviewService_class.prototype = (new AjaxPro.Request()).extend({
	GetReviewForUser: function(vendorid, callback) {
		return this.invoke("GetReviewForUser", {"vendorid":vendorid}, callback);
	},
	AddReview: function(vendorid, title, comment, food, price, service, ambience, update, callback) {
		return this.invoke("AddReview", {"vendorid":vendorid, "title":title, "comment":comment, "food":food, "price":price, "service":service, "ambience":ambience, "update":update}, callback);
	},
	initialize: function() {
		this.url = "/ajaxpro/AddReviewService,App_Code.njsi2nl2.ashx";
	}
})
AddReviewService = new AddReviewService_class();

