var getSalons=function() {
getSalons.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
getSalons.prototype={
GetSalonsByPlaceName:function(placeNameIdString,currentPage,type,succeededCallback, failedCallback, userContext) {
return this._invoke(getSalons.get_path(), 'GetSalonsByPlaceName',false,{placeNameIdString:placeNameIdString,currentPage:currentPage,type:type},succeededCallback,failedCallback,userContext); },
GetSalonsByPostalCode:function(postalCodeIdString,currentPage,type,succeededCallback, failedCallback, userContext) {
return this._invoke(getSalons.get_path(), 'GetSalonsByPostalCode',false,{postalCodeIdString:postalCodeIdString,currentPage:currentPage,type:type},succeededCallback,failedCallback,userContext); },
GetSalonsByLocation:function(Latitude1,Longitude1,Latitude2,Longitude2,currentPage,type,succeededCallback, failedCallback, userContext) {
return this._invoke(getSalons.get_path(), 'GetSalonsByLocation',false,{Latitude1:Latitude1,Longitude1:Longitude1,Latitude2:Latitude2,Longitude2:Longitude2,currentPage:currentPage,type:type},succeededCallback,failedCallback,userContext); }}
getSalons.registerClass('getSalons',Sys.Net.WebServiceProxy);
getSalons._staticInstance = new getSalons();
getSalons.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; getSalons._staticInstance._path = value; }
getSalons.get_path = function() { return getSalons._staticInstance._path; }
getSalons.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); }
getSalons._staticInstance._timeout = value; }
getSalons.get_timeout = function() { 
return getSalons._staticInstance._timeout; }
getSalons.set_defaultUserContext = function(value) { 
getSalons._staticInstance._userContext = value; }
getSalons.get_defaultUserContext = function() { 
return getSalons._staticInstance._userContext; }
getSalons.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; getSalons._staticInstance._succeeded = value; }
getSalons.get_defaultSucceededCallback = function() { 
return getSalons._staticInstance._succeeded; }
getSalons.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; getSalons._staticInstance._failed = value; }
getSalons.get_defaultFailedCallback = function() { 
return getSalons._staticInstance._failed; }
getSalons.set_path("/Custom/WebServices/getSalons.asmx");
getSalons.GetSalonsByPlaceName= function(placeNameIdString,currentPage,type,onSuccess,onFailed,userContext) {getSalons._staticInstance.GetSalonsByPlaceName(placeNameIdString,currentPage,type,onSuccess,onFailed,userContext); }
getSalons.GetSalonsByPostalCode= function(postalCodeIdString,currentPage,type,onSuccess,onFailed,userContext) {getSalons._staticInstance.GetSalonsByPostalCode(postalCodeIdString,currentPage,type,onSuccess,onFailed,userContext); }
getSalons.GetSalonsByLocation= function(Latitude1,Longitude1,Latitude2,Longitude2,currentPage,type,onSuccess,onFailed,userContext) {getSalons._staticInstance.GetSalonsByLocation(Latitude1,Longitude1,Latitude2,Longitude2,currentPage,type,onSuccess,onFailed,userContext); }
