Type.registerNamespace('APA');
APA.apaServices=function() {
APA.apaServices.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
APA.apaServices.prototype={
Login:function(LoginId,Password,succeededCallback, failedCallback, userContext) {
return this._invoke(APA.apaServices.get_path(), 'Login',false,{LoginId:LoginId,Password:Password},succeededCallback,failedCallback,userContext); },
GetLoginSession:function(UserSid,succeededCallback, failedCallback, userContext) {
return this._invoke(APA.apaServices.get_path(), 'GetLoginSession',false,{UserSid:UserSid},succeededCallback,failedCallback,userContext); },
GetSlides:function(contextKey,succeededCallback, failedCallback, userContext) {
return this._invoke(APA.apaServices.get_path(), 'GetSlides',false,{contextKey:contextKey},succeededCallback,failedCallback,userContext); },
ForgotPassword:function(Email,succeededCallback, failedCallback, userContext) {
return this._invoke(APA.apaServices.get_path(), 'ForgotPassword',false,{Email:Email},succeededCallback,failedCallback,userContext); }}
APA.apaServices.registerClass('APA.apaServices',Sys.Net.WebServiceProxy);
APA.apaServices._staticInstance = new APA.apaServices();
APA.apaServices.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; APA.apaServices._staticInstance._path = value; }
APA.apaServices.get_path = function() { return APA.apaServices._staticInstance._path; }
APA.apaServices.set_timeout = function(value) { var e = Function._validateParams(arguments, [{name: 'timeout', type: Number}]); if (e) throw e; if (value < 0) { throw Error.argumentOutOfRange('value', value, Sys.Res.invalidTimeout); }
APA.apaServices._staticInstance._timeout = value; }
APA.apaServices.get_timeout = function() { 
return APA.apaServices._staticInstance._timeout; }
APA.apaServices.set_defaultUserContext = function(value) { 
APA.apaServices._staticInstance._userContext = value; }
APA.apaServices.get_defaultUserContext = function() { 
return APA.apaServices._staticInstance._userContext; }
APA.apaServices.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; APA.apaServices._staticInstance._succeeded = value; }
APA.apaServices.get_defaultSucceededCallback = function() { 
return APA.apaServices._staticInstance._succeeded; }
APA.apaServices.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; APA.apaServices._staticInstance._failed = value; }
APA.apaServices.get_defaultFailedCallback = function() { 
return APA.apaServices._staticInstance._failed; }
APA.apaServices.set_path("/apaServices/apaServices.asmx");
APA.apaServices.Login= function(LoginId,Password,onSuccess,onFailed,userContext) {APA.apaServices._staticInstance.Login(LoginId,Password,onSuccess,onFailed,userContext); }
APA.apaServices.GetLoginSession= function(UserSid,onSuccess,onFailed,userContext) {APA.apaServices._staticInstance.GetLoginSession(UserSid,onSuccess,onFailed,userContext); }
APA.apaServices.GetSlides= function(contextKey,onSuccess,onFailed,userContext) {APA.apaServices._staticInstance.GetSlides(contextKey,onSuccess,onFailed,userContext); }
APA.apaServices.ForgotPassword= function(Email,onSuccess,onFailed,userContext) {APA.apaServices._staticInstance.ForgotPassword(Email,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
Type.registerNamespace('AjaxControlToolkit');
if (typeof(AjaxControlToolkit.Slide) === 'undefined') {
AjaxControlToolkit.Slide=gtc("AjaxControlToolkit.Slide");
AjaxControlToolkit.Slide.registerClass('AjaxControlToolkit.Slide');
}
