var FindStores=function() {
FindStores.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
FindStores.prototype={
GetStoreList:function(Brand,Zip,Miles,State,country,succeededCallback, failedCallback, userContext) {
return this._invoke(FindStores.get_path(), 'GetStoreList',false,{Brand:Brand,Zip:Zip,Miles:Miles,State:State,country:country},succeededCallback,failedCallback,userContext); },
GetStoreListByZip:function(Brand,zipCode,miles,country,succeededCallback, failedCallback, userContext) {
return this._invoke(FindStores.get_path(), 'GetStoreListByZip',false,{Brand:Brand,zipCode:zipCode,miles:miles,country:country},succeededCallback,failedCallback,userContext); },
GetStoreListByState:function(Brand,state,country,succeededCallback, failedCallback, userContext) {
return this._invoke(FindStores.get_path(), 'GetStoreListByState',false,{Brand:Brand,state:state,country:country},succeededCallback,failedCallback,userContext); },
GetStoreListByCity:function(Brand,city,country,succeededCallback, failedCallback, userContext) {
return this._invoke(FindStores.get_path(), 'GetStoreListByCity',false,{Brand:Brand,city:city,country:country},succeededCallback,failedCallback,userContext); },
GetStoreListByCounty:function(Brand,county,country,succeededCallback, failedCallback, userContext) {
return this._invoke(FindStores.get_path(), 'GetStoreListByCounty',false,{Brand:Brand,county:county,country:country},succeededCallback,failedCallback,userContext); },
GetRemainingResults:function(succeededCallback, failedCallback, userContext) {
return this._invoke(FindStores.get_path(), 'GetRemainingResults',false,{},succeededCallback,failedCallback,userContext); },
GetBrandStoreLogos:function(BrandName,TypeName,succeededCallback, failedCallback, userContext) {
return this._invoke(FindStores.get_path(), 'GetBrandStoreLogos',false,{BrandName:BrandName,TypeName:TypeName},succeededCallback,failedCallback,userContext); }}
FindStores.registerClass('FindStores',Sys.Net.WebServiceProxy);
FindStores._staticInstance = new FindStores();
FindStores.set_path = function(value) { FindStores._staticInstance._path = value; }
FindStores.get_path = function() { return FindStores._staticInstance._path; }
FindStores.set_timeout = function(value) { FindStores._staticInstance._timeout = value; }
FindStores.get_timeout = function() { return FindStores._staticInstance._timeout; }
FindStores.set_defaultUserContext = function(value) { FindStores._staticInstance._userContext = value; }
FindStores.get_defaultUserContext = function() { return FindStores._staticInstance._userContext; }
FindStores.set_defaultSucceededCallback = function(value) { FindStores._staticInstance._succeeded = value; }
FindStores.get_defaultSucceededCallback = function() { return FindStores._staticInstance._succeeded; }
FindStores.set_defaultFailedCallback = function(value) { FindStores._staticInstance._failed = value; }
FindStores.get_defaultFailedCallback = function() { return FindStores._staticInstance._failed; }
FindStores.set_path("/FindStores.asmx");
FindStores.GetStoreList= function(Brand,Zip,Miles,State,country,onSuccess,onFailed,userContext) {FindStores._staticInstance.GetStoreList(Brand,Zip,Miles,State,country,onSuccess,onFailed,userContext); }
FindStores.GetStoreListByZip= function(Brand,zipCode,miles,country,onSuccess,onFailed,userContext) {FindStores._staticInstance.GetStoreListByZip(Brand,zipCode,miles,country,onSuccess,onFailed,userContext); }
FindStores.GetStoreListByState= function(Brand,state,country,onSuccess,onFailed,userContext) {FindStores._staticInstance.GetStoreListByState(Brand,state,country,onSuccess,onFailed,userContext); }
FindStores.GetStoreListByCity= function(Brand,city,country,onSuccess,onFailed,userContext) {FindStores._staticInstance.GetStoreListByCity(Brand,city,country,onSuccess,onFailed,userContext); }
FindStores.GetStoreListByCounty= function(Brand,county,country,onSuccess,onFailed,userContext) {FindStores._staticInstance.GetStoreListByCounty(Brand,county,country,onSuccess,onFailed,userContext); }
FindStores.GetRemainingResults= function(onSuccess,onFailed,userContext) {FindStores._staticInstance.GetRemainingResults(onSuccess,onFailed,userContext); }
FindStores.GetBrandStoreLogos= function(BrandName,TypeName,onSuccess,onFailed,userContext) {FindStores._staticInstance.GetBrandStoreLogos(BrandName,TypeName,onSuccess,onFailed,userContext); }
