var MyServices=function() {
MyServices.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
MyServices.prototype={
getMakes:function(knownCategoryValues,category,succeededCallback, failedCallback, userContext) {
return this._invoke(MyServices.get_path(), 'getMakes',false,{knownCategoryValues:knownCategoryValues,category:category},succeededCallback,failedCallback,userContext); },
getModels:function(knownCategoryValues,category,succeededCallback, failedCallback, userContext) {
return this._invoke(MyServices.get_path(), 'getModels',false,{knownCategoryValues:knownCategoryValues,category:category},succeededCallback,failedCallback,userContext); },
GetLocalWrecker:function(suburb,succeededCallback, failedCallback, userContext) {
return this._invoke(MyServices.get_path(), 'GetLocalWrecker',false,{suburb:suburb},succeededCallback,failedCallback,userContext); },
GetPostcodes:function(suburb,succeededCallback, failedCallback, userContext) {
return this._invoke(MyServices.get_path(), 'GetPostcodes',false,{suburb:suburb},succeededCallback,failedCallback,userContext); },
SendRequest:function(v_make,v_model,v_year,req_as,p_desc,p_code,email_add,mobile_num,succeededCallback, failedCallback, userContext) {
return this._invoke(MyServices.get_path(), 'SendRequest',false,{v_make:v_make,v_model:v_model,v_year:v_year,req_as:req_as,p_desc:p_desc,p_code:p_code,email_add:email_add,mobile_num:mobile_num},succeededCallback,failedCallback,userContext); },
SignUpRequest:function(contact,business,sABN,sLMCT,phno,email,faxn,p_code,succeededCallback, failedCallback, userContext) {
return this._invoke(MyServices.get_path(), 'SignUpRequest',false,{contact:contact,business:business,sABN:sABN,sLMCT:sLMCT,phno:phno,email:email,faxn:faxn,p_code:p_code},succeededCallback,failedCallback,userContext); },
SendContactMsg:function(name,email,msg,succeededCallback, failedCallback, userContext) {
return this._invoke(MyServices.get_path(), 'SendContactMsg',false,{name:name,email:email,msg:msg},succeededCallback,failedCallback,userContext); }}
MyServices.registerClass('MyServices',Sys.Net.WebServiceProxy);
MyServices._staticInstance = new MyServices();
MyServices.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; MyServices._staticInstance._path = value; }
MyServices.get_path = function() { return MyServices._staticInstance._path; }
MyServices.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); }
MyServices._staticInstance._timeout = value; }
MyServices.get_timeout = function() { 
return MyServices._staticInstance._timeout; }
MyServices.set_defaultUserContext = function(value) { 
MyServices._staticInstance._userContext = value; }
MyServices.get_defaultUserContext = function() { 
return MyServices._staticInstance._userContext; }
MyServices.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; MyServices._staticInstance._succeeded = value; }
MyServices.get_defaultSucceededCallback = function() { 
return MyServices._staticInstance._succeeded; }
MyServices.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; MyServices._staticInstance._failed = value; }
MyServices.get_defaultFailedCallback = function() { 
return MyServices._staticInstance._failed; }
MyServices.set_path("/MyServices.asmx");
MyServices.getMakes= function(knownCategoryValues,category,onSuccess,onFailed,userContext) {MyServices._staticInstance.getMakes(knownCategoryValues,category,onSuccess,onFailed,userContext); }
MyServices.getModels= function(knownCategoryValues,category,onSuccess,onFailed,userContext) {MyServices._staticInstance.getModels(knownCategoryValues,category,onSuccess,onFailed,userContext); }
MyServices.GetLocalWrecker= function(suburb,onSuccess,onFailed,userContext) {MyServices._staticInstance.GetLocalWrecker(suburb,onSuccess,onFailed,userContext); }
MyServices.GetPostcodes= function(suburb,onSuccess,onFailed,userContext) {MyServices._staticInstance.GetPostcodes(suburb,onSuccess,onFailed,userContext); }
MyServices.SendRequest= function(v_make,v_model,v_year,req_as,p_desc,p_code,email_add,mobile_num,onSuccess,onFailed,userContext) {MyServices._staticInstance.SendRequest(v_make,v_model,v_year,req_as,p_desc,p_code,email_add,mobile_num,onSuccess,onFailed,userContext); }
MyServices.SignUpRequest= function(contact,business,sABN,sLMCT,phno,email,faxn,p_code,onSuccess,onFailed,userContext) {MyServices._staticInstance.SignUpRequest(contact,business,sABN,sLMCT,phno,email,faxn,p_code,onSuccess,onFailed,userContext); }
MyServices.SendContactMsg= function(name,email,msg,onSuccess,onFailed,userContext) {MyServices._staticInstance.SendContactMsg(name,email,msg,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
Type.registerNamespace('AjaxControlToolkit');
if (typeof(AjaxControlToolkit.CascadingDropDownNameValue) === 'undefined') {
AjaxControlToolkit.CascadingDropDownNameValue=gtc("AjaxControlToolkit.CascadingDropDownNameValue");
AjaxControlToolkit.CascadingDropDownNameValue.registerClass('AjaxControlToolkit.CascadingDropDownNameValue');
}

