Type.registerNamespace('Casa360.Web');
Casa360.Web.GeocodeService=function() {
Casa360.Web.GeocodeService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
Casa360.Web.GeocodeService.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return Casa360.Web.GeocodeService._staticInstance.get_path();},
Geocode:function(street,zip,city,state,country,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'Geocode',false,{street:street,zip:zip,city:city,state:state,country:country},succeededCallback,failedCallback,userContext); }}
Casa360.Web.GeocodeService.registerClass('Casa360.Web.GeocodeService',Sys.Net.WebServiceProxy);
Casa360.Web.GeocodeService._staticInstance = new Casa360.Web.GeocodeService();
Casa360.Web.GeocodeService.set_path = function(value) { Casa360.Web.GeocodeService._staticInstance.set_path(value); }
Casa360.Web.GeocodeService.get_path = function() { return Casa360.Web.GeocodeService._staticInstance.get_path(); }
Casa360.Web.GeocodeService.set_timeout = function(value) { Casa360.Web.GeocodeService._staticInstance.set_timeout(value); }
Casa360.Web.GeocodeService.get_timeout = function() { return Casa360.Web.GeocodeService._staticInstance.get_timeout(); }
Casa360.Web.GeocodeService.set_defaultUserContext = function(value) { Casa360.Web.GeocodeService._staticInstance.set_defaultUserContext(value); }
Casa360.Web.GeocodeService.get_defaultUserContext = function() { return Casa360.Web.GeocodeService._staticInstance.get_defaultUserContext(); }
Casa360.Web.GeocodeService.set_defaultSucceededCallback = function(value) { Casa360.Web.GeocodeService._staticInstance.set_defaultSucceededCallback(value); }
Casa360.Web.GeocodeService.get_defaultSucceededCallback = function() { return Casa360.Web.GeocodeService._staticInstance.get_defaultSucceededCallback(); }
Casa360.Web.GeocodeService.set_defaultFailedCallback = function(value) { Casa360.Web.GeocodeService._staticInstance.set_defaultFailedCallback(value); }
Casa360.Web.GeocodeService.get_defaultFailedCallback = function() { return Casa360.Web.GeocodeService._staticInstance.get_defaultFailedCallback(); }
Casa360.Web.GeocodeService.set_path("/GeocodeService.asmx");
Casa360.Web.GeocodeService.Geocode= function(street,zip,city,state,country,onSuccess,onFailed,userContext) {Casa360.Web.GeocodeService._staticInstance.Geocode(street,zip,city,state,country,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
if (typeof(Casa360.Web.Location) === 'undefined') {
Casa360.Web.Location=gtc("Casa360.Web.Location");
Casa360.Web.Location.registerClass('Casa360.Web.Location');
}

