Type.registerNamespace('MCG.Hospital');
MCG.Hospital.FauxGeocode=function() {
MCG.Hospital.FauxGeocode.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
MCG.Hospital.FauxGeocode.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return MCG.Hospital.FauxGeocode._staticInstance.get_path();},
GetLatLng:function(location,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetLatLng',false,{location:location},succeededCallback,failedCallback,userContext); }}
MCG.Hospital.FauxGeocode.registerClass('MCG.Hospital.FauxGeocode',Sys.Net.WebServiceProxy);
MCG.Hospital.FauxGeocode._staticInstance = new MCG.Hospital.FauxGeocode();
MCG.Hospital.FauxGeocode.set_path = function(value) { MCG.Hospital.FauxGeocode._staticInstance.set_path(value); }
MCG.Hospital.FauxGeocode.get_path = function() { return MCG.Hospital.FauxGeocode._staticInstance.get_path(); }
MCG.Hospital.FauxGeocode.set_timeout = function(value) { MCG.Hospital.FauxGeocode._staticInstance.set_timeout(value); }
MCG.Hospital.FauxGeocode.get_timeout = function() { return MCG.Hospital.FauxGeocode._staticInstance.get_timeout(); }
MCG.Hospital.FauxGeocode.set_defaultUserContext = function(value) { MCG.Hospital.FauxGeocode._staticInstance.set_defaultUserContext(value); }
MCG.Hospital.FauxGeocode.get_defaultUserContext = function() { return MCG.Hospital.FauxGeocode._staticInstance.get_defaultUserContext(); }
MCG.Hospital.FauxGeocode.set_defaultSucceededCallback = function(value) { MCG.Hospital.FauxGeocode._staticInstance.set_defaultSucceededCallback(value); }
MCG.Hospital.FauxGeocode.get_defaultSucceededCallback = function() { return MCG.Hospital.FauxGeocode._staticInstance.get_defaultSucceededCallback(); }
MCG.Hospital.FauxGeocode.set_defaultFailedCallback = function(value) { MCG.Hospital.FauxGeocode._staticInstance.set_defaultFailedCallback(value); }
MCG.Hospital.FauxGeocode.get_defaultFailedCallback = function() { return MCG.Hospital.FauxGeocode._staticInstance.get_defaultFailedCallback(); }
MCG.Hospital.FauxGeocode.set_path("/testing/FauxGeocode.svc");
MCG.Hospital.FauxGeocode.GetLatLng= function(location,onSuccess,onFailed,userContext) {MCG.Hospital.FauxGeocode._staticInstance.GetLatLng(location,onSuccess,onFailed,userContext); }

