var WebService=function() {
WebService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
WebService.prototype={
ElementsGet:function(filePath,name,succeededCallback, failedCallback, userContext) {
return this._invoke(WebService.get_path(), 'ElementsGet',false,{filePath:filePath,name:name},succeededCallback,failedCallback,userContext); },
GetProduct:function(persoon,deel,succeededCallback, failedCallback, userContext) {
return this._invoke(WebService.get_path(), 'GetProduct',false,{persoon:persoon,deel:deel},succeededCallback,failedCallback,userContext); },
GetMens:function(id,succeededCallback, failedCallback, userContext) {
return this._invoke(WebService.get_path(), 'GetMens',false,{id:id},succeededCallback,failedCallback,userContext); },
AfspraakMaken:function(validator,hash,succeededCallback, failedCallback, userContext) {
return this._invoke(WebService.get_path(), 'AfspraakMaken',false,{validator:validator,hash:hash},succeededCallback,failedCallback,userContext); },
ContactOpnemen:function(validator,hash,succeededCallback, failedCallback, userContext) {
return this._invoke(WebService.get_path(), 'ContactOpnemen',false,{validator:validator,hash:hash},succeededCallback,failedCallback,userContext); }}
WebService.registerClass('WebService',Sys.Net.WebServiceProxy);
WebService._staticInstance = new WebService();
WebService.set_path = function(value) { WebService._staticInstance._path = value; }
WebService.get_path = function() { return WebService._staticInstance._path; }
WebService.set_timeout = function(value) { WebService._staticInstance._timeout = value; }
WebService.get_timeout = function() { return WebService._staticInstance._timeout; }
WebService.set_defaultUserContext = function(value) { WebService._staticInstance._userContext = value; }
WebService.get_defaultUserContext = function() { return WebService._staticInstance._userContext; }
WebService.set_defaultSucceededCallback = function(value) { WebService._staticInstance._succeeded = value; }
WebService.get_defaultSucceededCallback = function() { return WebService._staticInstance._succeeded; }
WebService.set_defaultFailedCallback = function(value) { WebService._staticInstance._failed = value; }
WebService.get_defaultFailedCallback = function() { return WebService._staticInstance._failed; }
WebService.set_path("/Custom/Components/FrontEnd/WebService.asmx");
WebService.ElementsGet= function(filePath,name,onSuccess,onFailed,userContext) {WebService._staticInstance.ElementsGet(filePath,name,onSuccess,onFailed,userContext); }
WebService.GetProduct= function(persoon,deel,onSuccess,onFailed,userContext) {WebService._staticInstance.GetProduct(persoon,deel,onSuccess,onFailed,userContext); }
WebService.GetMens= function(id,onSuccess,onFailed,userContext) {WebService._staticInstance.GetMens(id,onSuccess,onFailed,userContext); }
WebService.AfspraakMaken= function(validator,hash,onSuccess,onFailed,userContext) {WebService._staticInstance.AfspraakMaken(validator,hash,onSuccess,onFailed,userContext); }
WebService.ContactOpnemen= function(validator,hash,onSuccess,onFailed,userContext) {WebService._staticInstance.ContactOpnemen(validator,hash,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
Type.registerNamespace('Synion.Ajax.Validator');
if (typeof(Synion.Ajax.Validator.S_Validator) === 'undefined') {
Synion.Ajax.Validator.S_Validator=gtc("Synion.Ajax.Validator.S_Validator");
Synion.Ajax.Validator.S_Validator.registerClass('Synion.Ajax.Validator.S_Validator');
}

