var wsChildCare=function() {
wsChildCare.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
wsChildCare.prototype={
GetDaycares:function(top,bottom,left,right,lat,lng,succeededCallback, failedCallback, userContext) {
return this._invoke(wsChildCare.get_path(), 'GetDaycares',false,{top:top,bottom:bottom,left:left,right:right,lat:lat,lng:lng},succeededCallback,failedCallback,userContext); },
GetDaycareListing:function(guid,succeededCallback, failedCallback, userContext) {
return this._invoke(wsChildCare.get_path(), 'GetDaycareListing',false,{guid:guid},succeededCallback,failedCallback,userContext); },
SendRequestForMoreInfo:function(guid,name,email,phone,message,succeededCallback, failedCallback, userContext) {
return this._invoke(wsChildCare.get_path(), 'SendRequestForMoreInfo',false,{guid:guid,name:name,email:email,phone:phone,message:message},succeededCallback,failedCallback,userContext); },
GetCompletionList:function(prefixText,count,succeededCallback, failedCallback, userContext) {
return this._invoke(wsChildCare.get_path(), 'GetCompletionList',false,{prefixText:prefixText,count:count},succeededCallback,failedCallback,userContext); },
GetGeoCode:function(address,succeededCallback, failedCallback, userContext) {
return this._invoke(wsChildCare.get_path(), 'GetGeoCode',false,{address:address},succeededCallback,failedCallback,userContext); },
RecordMouseOverPointStat:function(daycareId,succeededCallback, failedCallback, userContext) {
return this._invoke(wsChildCare.get_path(), 'RecordMouseOverPointStat',false,{daycareId:daycareId},succeededCallback,failedCallback,userContext); },
AddDC:function(dcName,address,phone,lat,lng,paidAd,succeededCallback, failedCallback, userContext) {
return this._invoke(wsChildCare.get_path(), 'AddDC',false,{dcName:dcName,address:address,phone:phone,lat:lat,lng:lng,paidAd:paidAd},succeededCallback,failedCallback,userContext); }}
wsChildCare.registerClass('wsChildCare',Sys.Net.WebServiceProxy);
wsChildCare._staticInstance = new wsChildCare();
wsChildCare.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; wsChildCare._staticInstance._path = value; }
wsChildCare.get_path = function() { return wsChildCare._staticInstance._path; }
wsChildCare.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); }
wsChildCare._staticInstance._timeout = value; }
wsChildCare.get_timeout = function() { 
return wsChildCare._staticInstance._timeout; }
wsChildCare.set_defaultUserContext = function(value) { 
wsChildCare._staticInstance._userContext = value; }
wsChildCare.get_defaultUserContext = function() { 
return wsChildCare._staticInstance._userContext; }
wsChildCare.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; wsChildCare._staticInstance._succeeded = value; }
wsChildCare.get_defaultSucceededCallback = function() { 
return wsChildCare._staticInstance._succeeded; }
wsChildCare.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; wsChildCare._staticInstance._failed = value; }
wsChildCare.get_defaultFailedCallback = function() { 
return wsChildCare._staticInstance._failed; }
wsChildCare.set_path("/wsChildCare.asmx");
wsChildCare.GetDaycares= function(top,bottom,left,right,lat,lng,onSuccess,onFailed,userContext) {wsChildCare._staticInstance.GetDaycares(top,bottom,left,right,lat,lng,onSuccess,onFailed,userContext); }
wsChildCare.GetDaycareListing= function(guid,onSuccess,onFailed,userContext) {wsChildCare._staticInstance.GetDaycareListing(guid,onSuccess,onFailed,userContext); }
wsChildCare.SendRequestForMoreInfo= function(guid,name,email,phone,message,onSuccess,onFailed,userContext) {wsChildCare._staticInstance.SendRequestForMoreInfo(guid,name,email,phone,message,onSuccess,onFailed,userContext); }
wsChildCare.GetCompletionList= function(prefixText,count,onSuccess,onFailed,userContext) {wsChildCare._staticInstance.GetCompletionList(prefixText,count,onSuccess,onFailed,userContext); }
wsChildCare.GetGeoCode= function(address,onSuccess,onFailed,userContext) {wsChildCare._staticInstance.GetGeoCode(address,onSuccess,onFailed,userContext); }
wsChildCare.RecordMouseOverPointStat= function(daycareId,onSuccess,onFailed,userContext) {wsChildCare._staticInstance.RecordMouseOverPointStat(daycareId,onSuccess,onFailed,userContext); }
wsChildCare.AddDC= function(dcName,address,phone,lat,lng,paidAd,onSuccess,onFailed,userContext) {wsChildCare._staticInstance.AddDC(dcName,address,phone,lat,lng,paidAd,onSuccess,onFailed,userContext); }
