addNamespace("GreenTreeSoft.WebSiteUI.eng.Reservations");
GreenTreeSoft.WebSiteUI.eng.Reservations.ExpoReservation_class = Class.create();
GreenTreeSoft.WebSiteUI.eng.Reservations.ExpoReservation_class.prototype = (new AjaxPro.Request()).extend({
	VerLogin: function(temp, callback) {
		return this.invoke("VerLogin", {"temp":temp}, callback);
	},
	Login: function(userName, passWord, callback) {
		return this.invoke("Login", {"userName":userName, "passWord":passWord}, callback);
	},
	GetUserInfo: function(temp, callback) {
		return this.invoke("GetUserInfo", {"temp":temp}, callback);
	},
	GetHotelPayType: function(hotelCode, callback) {
		return this.invoke("GetHotelPayType", {"hotelCode":hotelCode}, callback);
	},
	GetCouponList: function(checkin, callback) {
		return this.invoke("GetCouponList", {"checkin":checkin}, callback);
	},
	VerCoupon: function(hotelCode, roomID, roomCount, strCheckin, strCheckout, couponID, callback) {
		return this.invoke("VerCoupon", {"hotelCode":hotelCode, "roomID":roomID, "roomCount":roomCount, "strCheckin":strCheckin, "strCheckout":strCheckout, "couponID":couponID}, callback);
	},
	initialize: function() {
		this.url = "/ajaxpro/GreenTreeSoft.WebSiteUI.eng.Reservations.ExpoReservation,GreenTreeSoft.WebSiteUI.ashx";
	}
})
GreenTreeSoft.WebSiteUI.eng.Reservations.ExpoReservation = new GreenTreeSoft.WebSiteUI.eng.Reservations.ExpoReservation_class();


