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

