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

