var IntroService=function() {
IntroService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
IntroService.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return IntroService._staticInstance.get_path();},
GetIntro:function(parametr,succeededCallback, failedCallback, userContext) {
/// <param name="parametr" 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(), 'GetIntro',false,{parametr:parametr},succeededCallback,failedCallback,userContext); },
GetAkt:function(number,succeededCallback, failedCallback, userContext) {
/// <param name="number" 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(), 'GetAkt',false,{number:number},succeededCallback,failedCallback,userContext); }}
IntroService.registerClass('IntroService',Sys.Net.WebServiceProxy);
IntroService._staticInstance = new IntroService();
IntroService.set_path = function(value) {
IntroService._staticInstance.set_path(value); }
IntroService.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return IntroService._staticInstance.get_path();}
IntroService.set_timeout = function(value) {
IntroService._staticInstance.set_timeout(value); }
IntroService.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return IntroService._staticInstance.get_timeout(); }
IntroService.set_defaultUserContext = function(value) { 
IntroService._staticInstance.set_defaultUserContext(value); }
IntroService.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return IntroService._staticInstance.get_defaultUserContext(); }
IntroService.set_defaultSucceededCallback = function(value) { 
 IntroService._staticInstance.set_defaultSucceededCallback(value); }
IntroService.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return IntroService._staticInstance.get_defaultSucceededCallback(); }
IntroService.set_defaultFailedCallback = function(value) { 
IntroService._staticInstance.set_defaultFailedCallback(value); }
IntroService.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return IntroService._staticInstance.get_defaultFailedCallback(); }
IntroService.set_path("/IntroService.asmx");
IntroService.GetIntro= function(parametr,onSuccess,onFailed,userContext) {
/// <param name="parametr" 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>
IntroService._staticInstance.GetIntro(parametr,onSuccess,onFailed,userContext); }
IntroService.GetAkt= function(number,onSuccess,onFailed,userContext) {
/// <param name="number" 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>
IntroService._staticInstance.GetAkt(number,onSuccess,onFailed,userContext); }

