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