addNamespace("Web.Lytp");
Web.Lytp.Show_class = Class.create();
Web.Lytp.Show_class.prototype = (new AjaxPro.Request()).extend({
	GetPrice: function(id, callback) {
		return this.invoke("GetPrice", {"id":id}, callback);
	},
	TypeList: function(TicketId, TripDate, callback) {
		return this.invoke("TypeList", {"TicketId":TicketId, "TripDate":TripDate}, callback);
	},
	getDateList: function(TicketId, callback) {
		return this.invoke("getDateList", {"TicketId":TicketId}, callback);
	},
	initialize: function() {
		this.url = "/ajaxpro/Web.Lytp.Show,Web.ashx";
	}
})
Web.Lytp.Show = new Web.Lytp.Show_class();

