Type.registerNamespace('Services.GeographyLocation');
Services.GeographyLocation.Location=function() {
Services.GeographyLocation.Location.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
Services.GeographyLocation.Location.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return Services.GeographyLocation.Location._staticInstance.get_path();},
GetCityState:function(postcode,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetCityState',true,{postcode:postcode},succeededCallback,failedCallback,userContext); },
GetCityStateByCountryAndZipCode:function(countryID,zipCode,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetCityStateByCountryAndZipCode',true,{countryID:countryID,zipCode:zipCode},succeededCallback,failedCallback,userContext); },
GetZipCode:function(city,state,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetZipCode',true,{city:city,state:state},succeededCallback,failedCallback,userContext); },
GetStateID:function(stateName,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetStateID',true,{stateName:stateName},succeededCallback,failedCallback,userContext); },
GetLocationDisplayInfoByLocationID:function(locationID,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetLocationDisplayInfoByLocationID',true,{locationID:locationID},succeededCallback,failedCallback,userContext); },
GetLocationDisplayInfoByZipCode:function(zipCode,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetLocationDisplayInfoByZipCode',true,{zipCode:zipCode},succeededCallback,failedCallback,userContext); },
GetLocationDisplayInfoByDefaultChannel:function(succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetLocationDisplayInfoByDefaultChannel',true,{},succeededCallback,failedCallback,userContext); },
GetStateListByCountryId:function(countryId,siteChannelId,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetStateListByCountryId',true,{countryId:countryId,siteChannelId:siteChannelId},succeededCallback,failedCallback,userContext); }}
Services.GeographyLocation.Location.registerClass('Services.GeographyLocation.Location',Sys.Net.WebServiceProxy);
Services.GeographyLocation.Location._staticInstance = new Services.GeographyLocation.Location();
Services.GeographyLocation.Location.set_path = function(value) { Services.GeographyLocation.Location._staticInstance.set_path(value); }
Services.GeographyLocation.Location.get_path = function() { return Services.GeographyLocation.Location._staticInstance.get_path(); }
Services.GeographyLocation.Location.set_timeout = function(value) { Services.GeographyLocation.Location._staticInstance.set_timeout(value); }
Services.GeographyLocation.Location.get_timeout = function() { return Services.GeographyLocation.Location._staticInstance.get_timeout(); }
Services.GeographyLocation.Location.set_defaultUserContext = function(value) { Services.GeographyLocation.Location._staticInstance.set_defaultUserContext(value); }
Services.GeographyLocation.Location.get_defaultUserContext = function() { return Services.GeographyLocation.Location._staticInstance.get_defaultUserContext(); }
Services.GeographyLocation.Location.set_defaultSucceededCallback = function(value) { Services.GeographyLocation.Location._staticInstance.set_defaultSucceededCallback(value); }
Services.GeographyLocation.Location.get_defaultSucceededCallback = function() { return Services.GeographyLocation.Location._staticInstance.get_defaultSucceededCallback(); }
Services.GeographyLocation.Location.set_defaultFailedCallback = function(value) { Services.GeographyLocation.Location._staticInstance.set_defaultFailedCallback(value); }
Services.GeographyLocation.Location.get_defaultFailedCallback = function() { return Services.GeographyLocation.Location._staticInstance.get_defaultFailedCallback(); }
Services.GeographyLocation.Location.set_path("/Services/GeographyLocation/Location.asmx");
Services.GeographyLocation.Location.GetCityState= function(postcode,onSuccess,onFailed,userContext) {Services.GeographyLocation.Location._staticInstance.GetCityState(postcode,onSuccess,onFailed,userContext); }
Services.GeographyLocation.Location.GetCityStateByCountryAndZipCode= function(countryID,zipCode,onSuccess,onFailed,userContext) {Services.GeographyLocation.Location._staticInstance.GetCityStateByCountryAndZipCode(countryID,zipCode,onSuccess,onFailed,userContext); }
Services.GeographyLocation.Location.GetZipCode= function(city,state,onSuccess,onFailed,userContext) {Services.GeographyLocation.Location._staticInstance.GetZipCode(city,state,onSuccess,onFailed,userContext); }
Services.GeographyLocation.Location.GetStateID= function(stateName,onSuccess,onFailed,userContext) {Services.GeographyLocation.Location._staticInstance.GetStateID(stateName,onSuccess,onFailed,userContext); }
Services.GeographyLocation.Location.GetLocationDisplayInfoByLocationID= function(locationID,onSuccess,onFailed,userContext) {Services.GeographyLocation.Location._staticInstance.GetLocationDisplayInfoByLocationID(locationID,onSuccess,onFailed,userContext); }
Services.GeographyLocation.Location.GetLocationDisplayInfoByZipCode= function(zipCode,onSuccess,onFailed,userContext) {Services.GeographyLocation.Location._staticInstance.GetLocationDisplayInfoByZipCode(zipCode,onSuccess,onFailed,userContext); }
Services.GeographyLocation.Location.GetLocationDisplayInfoByDefaultChannel= function(onSuccess,onFailed,userContext) {Services.GeographyLocation.Location._staticInstance.GetLocationDisplayInfoByDefaultChannel(onSuccess,onFailed,userContext); }
Services.GeographyLocation.Location.GetStateListByCountryId= function(countryId,siteChannelId,onSuccess,onFailed,userContext) {Services.GeographyLocation.Location._staticInstance.GetStateListByCountryId(countryId,siteChannelId,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
Type.registerNamespace('Presenters.Account.Data');
if (typeof(Presenters.Account.Data.ListItemData) === 'undefined') {
Presenters.Account.Data.ListItemData=gtc("Presenters.Account.Data.ListItemData");
Presenters.Account.Data.ListItemData.registerClass('Presenters.Account.Data.ListItemData');
}
