Type.registerNamespace('Prep101.CMS.Website.WebService');
Prep101.CMS.Website.WebService.CMSService=function() {
Prep101.CMS.Website.WebService.CMSService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
Prep101.CMS.Website.WebService.CMSService.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return Prep101.CMS.Website.WebService.CMSService._staticInstance.get_path();},
CheckIfUsernameExist:function(username,succeededCallback, failedCallback, userContext) {
/// <param name="username" 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(), 'CheckIfUsernameExist',false,{username:username},succeededCallback,failedCallback,userContext); },
GetSessionSchedule:function(sessionID,succeededCallback, failedCallback, userContext) {
/// <param name="sessionID" 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(), 'GetSessionSchedule',false,{sessionID:sessionID},succeededCallback,failedCallback,userContext); },
LoadSessionDetail:function(sessionID,template,succeededCallback, failedCallback, userContext) {
/// <param name="sessionID" type="Number">System.Int32</param>
/// <param name="template" 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(), 'LoadSessionDetail',false,{sessionID:sessionID,template:template},succeededCallback,failedCallback,userContext); },
GetCourseList:function(knownCategoryValues,category,succeededCallback, failedCallback, userContext) {
/// <param name="knownCategoryValues" type="String">System.String</param>
/// <param name="category" 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(), 'GetCourseList',false,{knownCategoryValues:knownCategoryValues,category:category},succeededCallback,failedCallback,userContext); },
GetUserProfile: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(), 'GetUserProfile',false,{},succeededCallback,failedCallback,userContext); },
GenerateSessionCode: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(), 'GenerateSessionCode',false,{},succeededCallback,failedCallback,userContext); }}
Prep101.CMS.Website.WebService.CMSService.registerClass('Prep101.CMS.Website.WebService.CMSService',Sys.Net.WebServiceProxy);
Prep101.CMS.Website.WebService.CMSService._staticInstance = new Prep101.CMS.Website.WebService.CMSService();
Prep101.CMS.Website.WebService.CMSService.set_path = function(value) {
Prep101.CMS.Website.WebService.CMSService._staticInstance.set_path(value); }
Prep101.CMS.Website.WebService.CMSService.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return Prep101.CMS.Website.WebService.CMSService._staticInstance.get_path();}
Prep101.CMS.Website.WebService.CMSService.set_timeout = function(value) {
Prep101.CMS.Website.WebService.CMSService._staticInstance.set_timeout(value); }
Prep101.CMS.Website.WebService.CMSService.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return Prep101.CMS.Website.WebService.CMSService._staticInstance.get_timeout(); }
Prep101.CMS.Website.WebService.CMSService.set_defaultUserContext = function(value) { 
Prep101.CMS.Website.WebService.CMSService._staticInstance.set_defaultUserContext(value); }
Prep101.CMS.Website.WebService.CMSService.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return Prep101.CMS.Website.WebService.CMSService._staticInstance.get_defaultUserContext(); }
Prep101.CMS.Website.WebService.CMSService.set_defaultSucceededCallback = function(value) { 
 Prep101.CMS.Website.WebService.CMSService._staticInstance.set_defaultSucceededCallback(value); }
Prep101.CMS.Website.WebService.CMSService.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return Prep101.CMS.Website.WebService.CMSService._staticInstance.get_defaultSucceededCallback(); }
Prep101.CMS.Website.WebService.CMSService.set_defaultFailedCallback = function(value) { 
Prep101.CMS.Website.WebService.CMSService._staticInstance.set_defaultFailedCallback(value); }
Prep101.CMS.Website.WebService.CMSService.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return Prep101.CMS.Website.WebService.CMSService._staticInstance.get_defaultFailedCallback(); }
Prep101.CMS.Website.WebService.CMSService.set_path("/WebService/CMSService.asmx");
Prep101.CMS.Website.WebService.CMSService.CheckIfUsernameExist= function(username,onSuccess,onFailed,userContext) {
/// <param name="username" 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>
Prep101.CMS.Website.WebService.CMSService._staticInstance.CheckIfUsernameExist(username,onSuccess,onFailed,userContext); }
Prep101.CMS.Website.WebService.CMSService.GetSessionSchedule= function(sessionID,onSuccess,onFailed,userContext) {
/// <param name="sessionID" 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>
Prep101.CMS.Website.WebService.CMSService._staticInstance.GetSessionSchedule(sessionID,onSuccess,onFailed,userContext); }
Prep101.CMS.Website.WebService.CMSService.LoadSessionDetail= function(sessionID,template,onSuccess,onFailed,userContext) {
/// <param name="sessionID" type="Number">System.Int32</param>
/// <param name="template" 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>
Prep101.CMS.Website.WebService.CMSService._staticInstance.LoadSessionDetail(sessionID,template,onSuccess,onFailed,userContext); }
Prep101.CMS.Website.WebService.CMSService.GetCourseList= function(knownCategoryValues,category,onSuccess,onFailed,userContext) {
/// <param name="knownCategoryValues" type="String">System.String</param>
/// <param name="category" 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>
Prep101.CMS.Website.WebService.CMSService._staticInstance.GetCourseList(knownCategoryValues,category,onSuccess,onFailed,userContext); }
Prep101.CMS.Website.WebService.CMSService.GetUserProfile= 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>
Prep101.CMS.Website.WebService.CMSService._staticInstance.GetUserProfile(onSuccess,onFailed,userContext); }
Prep101.CMS.Website.WebService.CMSService.GenerateSessionCode= 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>
Prep101.CMS.Website.WebService.CMSService._staticInstance.GenerateSessionCode(onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
Type.registerNamespace('AjaxControlToolkit');
if (typeof(AjaxControlToolkit.CascadingDropDownNameValue) === 'undefined') {
AjaxControlToolkit.CascadingDropDownNameValue=gtc("AjaxControlToolkit.CascadingDropDownNameValue");
AjaxControlToolkit.CascadingDropDownNameValue.registerClass('AjaxControlToolkit.CascadingDropDownNameValue');
}
Type.registerNamespace('Prep101.CMS.Core');
if (typeof(Prep101.CMS.Core.Student) === 'undefined') {
Prep101.CMS.Core.Student=gtc("Prep101.CMS.Core.Student");
Prep101.CMS.Core.Student.registerClass('Prep101.CMS.Core.Student');
}

