CsAjax_class = function() {};
Object.extend(CsAjax_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	GetDiningRoomHours: function(id, date) {
		return this.invoke("GetDiningRoomHours", {"id":id, "date":date}, this.GetDiningRoomHours.getArguments().slice(2));
	},
	GetUserFriends: function() {
		return this.invoke("GetUserFriends", {}, this.GetUserFriends.getArguments().slice(0));
	},
	url: '/ajaxpro/com.ganla.build.CsAjax,com.ganla.build.ashx'
}));
CsAjax = new CsAjax_class();

