var SVC_Scheids=function() {
SVC_Scheids.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
SVC_Scheids.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return SVC_Scheids._staticInstance.get_path();},
scheidsAanvragen:function(AfdelingID,succeededCallback, failedCallback, userContext) {
/// <param name="AfdelingID" type="Number">System.Int32</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'scheidsAanvragen',false,{AfdelingID:AfdelingID},succeededCallback,failedCallback,userContext); },
scheidsAanvraag:function(RecID,succeededCallback, failedCallback, userContext) {
/// <param name="RecID" type="Number">System.Int32</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'scheidsAanvraag',false,{RecID:RecID},succeededCallback,failedCallback,userContext); }}
SVC_Scheids.registerClass('SVC_Scheids',Sys.Net.WebServiceProxy);
SVC_Scheids._staticInstance = new SVC_Scheids();
SVC_Scheids.set_path = function(value) {
SVC_Scheids._staticInstance.set_path(value); }
SVC_Scheids.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return SVC_Scheids._staticInstance.get_path();}
SVC_Scheids.set_timeout = function(value) {
SVC_Scheids._staticInstance.set_timeout(value); }
SVC_Scheids.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return SVC_Scheids._staticInstance.get_timeout(); }
SVC_Scheids.set_defaultUserContext = function(value) { 
SVC_Scheids._staticInstance.set_defaultUserContext(value); }
SVC_Scheids.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return SVC_Scheids._staticInstance.get_defaultUserContext(); }
SVC_Scheids.set_defaultSucceededCallback = function(value) { 
 SVC_Scheids._staticInstance.set_defaultSucceededCallback(value); }
SVC_Scheids.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return SVC_Scheids._staticInstance.get_defaultSucceededCallback(); }
SVC_Scheids.set_defaultFailedCallback = function(value) { 
SVC_Scheids._staticInstance.set_defaultFailedCallback(value); }
SVC_Scheids.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return SVC_Scheids._staticInstance.get_defaultFailedCallback(); }
SVC_Scheids.set_path("/SVC_Scheids.asmx");
SVC_Scheids.scheidsAanvragen= function(AfdelingID,onSuccess,onFailed,userContext) {
/// <param name="AfdelingID" type="Number">System.Int32</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
SVC_Scheids._staticInstance.scheidsAanvragen(AfdelingID,onSuccess,onFailed,userContext); }
SVC_Scheids.scheidsAanvraag= function(RecID,onSuccess,onFailed,userContext) {
/// <param name="RecID" type="Number">System.Int32</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
SVC_Scheids._staticInstance.scheidsAanvraag(RecID,onSuccess,onFailed,userContext); }
