var HotelInfoService=function() {
HotelInfoService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
HotelInfoService.prototype={
GetShape:function(hotelId,succeededCallback, failedCallback, userContext) {
return this._invoke(HotelInfoService.get_path(), 'GetShape',false,{hotelId:hotelId},succeededCallback,failedCallback,userContext); },
GetShapes:function(cityName,countryName,fullData,succeededCallback, failedCallback, userContext) {
return this._invoke(HotelInfoService.get_path(), 'GetShapes',false,{cityName:cityName,countryName:countryName,fullData:fullData},succeededCallback,failedCallback,userContext); }}
HotelInfoService.registerClass('HotelInfoService',Sys.Net.WebServiceProxy);
HotelInfoService._staticInstance = new HotelInfoService();
HotelInfoService.set_path = function(value) { HotelInfoService._staticInstance._path = value; }
HotelInfoService.get_path = function() { return HotelInfoService._staticInstance._path; }
HotelInfoService.set_timeout = function(value) { HotelInfoService._staticInstance._timeout = value; }
HotelInfoService.get_timeout = function() { return HotelInfoService._staticInstance._timeout; }
HotelInfoService.set_defaultUserContext = function(value) { HotelInfoService._staticInstance._userContext = value; }
HotelInfoService.get_defaultUserContext = function() { return HotelInfoService._staticInstance._userContext; }
HotelInfoService.set_defaultSucceededCallback = function(value) { HotelInfoService._staticInstance._succeeded = value; }
HotelInfoService.get_defaultSucceededCallback = function() { return HotelInfoService._staticInstance._succeeded; }
HotelInfoService.set_defaultFailedCallback = function(value) { HotelInfoService._staticInstance._failed = value; }
HotelInfoService.get_defaultFailedCallback = function() { return HotelInfoService._staticInstance._failed; }
HotelInfoService.set_path("/hoteles/HotelInfoService.asmx");
HotelInfoService.GetShape= function(hotelId,onSuccess,onFailed,userContext) {HotelInfoService._staticInstance.GetShape(hotelId,onSuccess,onFailed,userContext); }
HotelInfoService.GetShapes= function(cityName,countryName,fullData,onSuccess,onFailed,userContext) {HotelInfoService._staticInstance.GetShapes(cityName,countryName,fullData,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
if (typeof(HotelInfoService_VEShape) === 'undefined') {
var HotelInfoService_VEShape=gtc("HotelInfoService+VEShape");
HotelInfoService_VEShape.registerClass('HotelInfoService_VEShape');
}
