var HelperService=function() {
HelperService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
HelperService.prototype={
SetCheckFont:function(param,succeededCallback, failedCallback, userContext) {
return this._invoke(HelperService.get_path(), 'SetCheckFont',false,{param:param},succeededCallback,failedCallback,userContext); },
MarkBeginUpload:function(succeededCallback, failedCallback, userContext) {
return this._invoke(HelperService.get_path(), 'MarkBeginUpload',false,{},succeededCallback,failedCallback,userContext); },
MarkEndUpload:function(succeededCallback, failedCallback, userContext) {
return this._invoke(HelperService.get_path(), 'MarkEndUpload',false,{},succeededCallback,failedCallback,userContext); },
SetFlashInstallStatus:function(value,succeededCallback, failedCallback, userContext) {
return this._invoke(HelperService.get_path(), 'SetFlashInstallStatus',false,{value:value},succeededCallback,failedCallback,userContext); },
IsAlbumReady:function(albumId,succeededCallback, failedCallback, userContext) {
return this._invoke(HelperService.get_path(), 'IsAlbumReady',false,{albumId:albumId},succeededCallback,failedCallback,userContext); },
DecreaseLicense:function(orderId,succeededCallback, failedCallback, userContext) {
return this._invoke(HelperService.get_path(), 'DecreaseLicense',false,{orderId:orderId},succeededCallback,failedCallback,userContext); },
RefreshSession:function(succeededCallback, failedCallback, userContext) {
return this._invoke(HelperService.get_path(), 'RefreshSession',false,{},succeededCallback,failedCallback,userContext); }}
HelperService.registerClass('HelperService',Sys.Net.WebServiceProxy);
HelperService._staticInstance = new HelperService();
HelperService.set_path = function(value) { HelperService._staticInstance._path = value; }
HelperService.get_path = function() { return HelperService._staticInstance._path; }
HelperService.set_timeout = function(value) { HelperService._staticInstance._timeout = value; }
HelperService.get_timeout = function() { return HelperService._staticInstance._timeout; }
HelperService.set_defaultUserContext = function(value) { HelperService._staticInstance._userContext = value; }
HelperService.get_defaultUserContext = function() { return HelperService._staticInstance._userContext; }
HelperService.set_defaultSucceededCallback = function(value) { HelperService._staticInstance._succeeded = value; }
HelperService.get_defaultSucceededCallback = function() { return HelperService._staticInstance._succeeded; }
HelperService.set_defaultFailedCallback = function(value) { HelperService._staticInstance._failed = value; }
HelperService.get_defaultFailedCallback = function() { return HelperService._staticInstance._failed; }
HelperService.set_path("/Services/HelperService.asmx");
HelperService.SetCheckFont= function(param,onSuccess,onFailed,userContext) {HelperService._staticInstance.SetCheckFont(param,onSuccess,onFailed,userContext); }
HelperService.MarkBeginUpload= function(onSuccess,onFailed,userContext) {HelperService._staticInstance.MarkBeginUpload(onSuccess,onFailed,userContext); }
HelperService.MarkEndUpload= function(onSuccess,onFailed,userContext) {HelperService._staticInstance.MarkEndUpload(onSuccess,onFailed,userContext); }
HelperService.SetFlashInstallStatus= function(value,onSuccess,onFailed,userContext) {HelperService._staticInstance.SetFlashInstallStatus(value,onSuccess,onFailed,userContext); }
HelperService.IsAlbumReady= function(albumId,onSuccess,onFailed,userContext) {HelperService._staticInstance.IsAlbumReady(albumId,onSuccess,onFailed,userContext); }
HelperService.DecreaseLicense= function(orderId,onSuccess,onFailed,userContext) {HelperService._staticInstance.DecreaseLicense(orderId,onSuccess,onFailed,userContext); }
HelperService.RefreshSession= function(onSuccess,onFailed,userContext) {HelperService._staticInstance.RefreshSession(onSuccess,onFailed,userContext); }
