Type.registerNamespace('VillasOfLuxuryAjax.Services');
VillasOfLuxuryAjax.Services.ImportExport=function() {
VillasOfLuxuryAjax.Services.ImportExport.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
VillasOfLuxuryAjax.Services.ImportExport.prototype={
HelloWorld:function(succeededCallback, failedCallback, userContext) {
return this._invoke(VillasOfLuxuryAjax.Services.ImportExport.get_path(), 'HelloWorld',false,{},succeededCallback,failedCallback,userContext); }}
VillasOfLuxuryAjax.Services.ImportExport.registerClass('VillasOfLuxuryAjax.Services.ImportExport',Sys.Net.WebServiceProxy);
VillasOfLuxuryAjax.Services.ImportExport._staticInstance = new VillasOfLuxuryAjax.Services.ImportExport();
VillasOfLuxuryAjax.Services.ImportExport.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; VillasOfLuxuryAjax.Services.ImportExport._staticInstance._path = value; }
VillasOfLuxuryAjax.Services.ImportExport.get_path = function() { return VillasOfLuxuryAjax.Services.ImportExport._staticInstance._path; }
VillasOfLuxuryAjax.Services.ImportExport.set_timeout = function(value) { var e = Function._validateParams(arguments, [{name: 'timeout', type: Number}]); if (e) throw e; if (value < 0) { throw Error.argumentOutOfRange('value', value, Sys.Res.invalidTimeout); }
VillasOfLuxuryAjax.Services.ImportExport._staticInstance._timeout = value; }
VillasOfLuxuryAjax.Services.ImportExport.get_timeout = function() { 
return VillasOfLuxuryAjax.Services.ImportExport._staticInstance._timeout; }
VillasOfLuxuryAjax.Services.ImportExport.set_defaultUserContext = function(value) { 
VillasOfLuxuryAjax.Services.ImportExport._staticInstance._userContext = value; }
VillasOfLuxuryAjax.Services.ImportExport.get_defaultUserContext = function() { 
return VillasOfLuxuryAjax.Services.ImportExport._staticInstance._userContext; }
VillasOfLuxuryAjax.Services.ImportExport.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; VillasOfLuxuryAjax.Services.ImportExport._staticInstance._succeeded = value; }
VillasOfLuxuryAjax.Services.ImportExport.get_defaultSucceededCallback = function() { 
return VillasOfLuxuryAjax.Services.ImportExport._staticInstance._succeeded; }
VillasOfLuxuryAjax.Services.ImportExport.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; VillasOfLuxuryAjax.Services.ImportExport._staticInstance._failed = value; }
VillasOfLuxuryAjax.Services.ImportExport.get_defaultFailedCallback = function() { 
return VillasOfLuxuryAjax.Services.ImportExport._staticInstance._failed; }
VillasOfLuxuryAjax.Services.ImportExport.set_path("/Services/ImportExport.asmx");
VillasOfLuxuryAjax.Services.ImportExport.HelloWorld= function(onSuccess,onFailed,userContext) {VillasOfLuxuryAjax.Services.ImportExport._staticInstance.HelloWorld(onSuccess,onFailed,userContext); }
