Type.registerNamespace('YardandGroom');
YardandGroom.WebServices=function() {
YardandGroom.WebServices.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
YardandGroom.WebServices.prototype={
GetJobsRegionItems:function(Country,succeededCallback, failedCallback, userContext) {
return this._invoke(YardandGroom.WebServices.get_path(), 'GetJobsRegionItems',false,{Country:Country},succeededCallback,failedCallback,userContext); }}
YardandGroom.WebServices.registerClass('YardandGroom.WebServices',Sys.Net.WebServiceProxy);
YardandGroom.WebServices._staticInstance = new YardandGroom.WebServices();
YardandGroom.WebServices.set_path = function(value) { YardandGroom.WebServices._staticInstance._path = value; }
YardandGroom.WebServices.get_path = function() { return YardandGroom.WebServices._staticInstance._path; }
YardandGroom.WebServices.set_timeout = function(value) { YardandGroom.WebServices._staticInstance._timeout = value; }
YardandGroom.WebServices.get_timeout = function() { return YardandGroom.WebServices._staticInstance._timeout; }
YardandGroom.WebServices.set_defaultUserContext = function(value) { YardandGroom.WebServices._staticInstance._userContext = value; }
YardandGroom.WebServices.get_defaultUserContext = function() { return YardandGroom.WebServices._staticInstance._userContext; }
YardandGroom.WebServices.set_defaultSucceededCallback = function(value) { YardandGroom.WebServices._staticInstance._succeeded = value; }
YardandGroom.WebServices.get_defaultSucceededCallback = function() { return YardandGroom.WebServices._staticInstance._succeeded; }
YardandGroom.WebServices.set_defaultFailedCallback = function(value) { YardandGroom.WebServices._staticInstance._failed = value; }
YardandGroom.WebServices.get_defaultFailedCallback = function() { return YardandGroom.WebServices._staticInstance._failed; }
YardandGroom.WebServices.set_path("/WebServices.asmx");
YardandGroom.WebServices.GetJobsRegionItems= function(Country,onSuccess,onFailed,userContext) {YardandGroom.WebServices._staticInstance.GetJobsRegionItems(Country,onSuccess,onFailed,userContext); }
