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