var GodadgangService=function() {
GodadgangService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
GodadgangService.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return GodadgangService._staticInstance.get_path();},
CallGodadgangService:function(servicelink,succeededCallback, failedCallback, userContext) {
/// <param name="servicelink" type="String">System.String</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(), 'CallGodadgangService',false,{servicelink:servicelink},succeededCallback,failedCallback,userContext); }}
GodadgangService.registerClass('GodadgangService',Sys.Net.WebServiceProxy);
GodadgangService._staticInstance = new GodadgangService();
GodadgangService.set_path = function(value) {
GodadgangService._staticInstance.set_path(value); }
GodadgangService.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return GodadgangService._staticInstance.get_path();}
GodadgangService.set_timeout = function(value) {
GodadgangService._staticInstance.set_timeout(value); }
GodadgangService.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return GodadgangService._staticInstance.get_timeout(); }
GodadgangService.set_defaultUserContext = function(value) { 
GodadgangService._staticInstance.set_defaultUserContext(value); }
GodadgangService.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return GodadgangService._staticInstance.get_defaultUserContext(); }
GodadgangService.set_defaultSucceededCallback = function(value) { 
 GodadgangService._staticInstance.set_defaultSucceededCallback(value); }
GodadgangService.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return GodadgangService._staticInstance.get_defaultSucceededCallback(); }
GodadgangService.set_defaultFailedCallback = function(value) { 
GodadgangService._staticInstance.set_defaultFailedCallback(value); }
GodadgangService.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return GodadgangService._staticInstance.get_defaultFailedCallback(); }
GodadgangService.set_enableJsonp = function(value) { GodadgangService._staticInstance.set_enableJsonp(value); }
GodadgangService.get_enableJsonp = function() { 
/// <value type="Boolean">Specifies whether the service supports JSONP for cross domain calling.</value>
return GodadgangService._staticInstance.get_enableJsonp(); }
GodadgangService.set_jsonpCallbackParameter = function(value) { GodadgangService._staticInstance.set_jsonpCallbackParameter(value); }
GodadgangService.get_jsonpCallbackParameter = function() { 
/// <value type="String">Specifies the parameter name that contains the callback function name for a JSONP request.</value>
return GodadgangService._staticInstance.get_jsonpCallbackParameter(); }
GodadgangService.set_path("/VisKort/Services/GodadgangService.asmx");
GodadgangService.CallGodadgangService= function(servicelink,onSuccess,onFailed,userContext) {
/// <param name="servicelink" type="String">System.String</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>
GodadgangService._staticInstance.CallGodadgangService(servicelink,onSuccess,onFailed,userContext); }

