Type.registerNamespace('Searches.Ajax.College');
Searches.Ajax.College.Major=function() {
Searches.Ajax.College.Major.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
Searches.Ajax.College.Major.prototype={
AJAX_GetMajors:function(sMajorCategory,bShowEmptyEntries,succeededCallback, failedCallback, userContext) {
return this._invoke(Searches.Ajax.College.Major.get_path(), 'AJAX_GetMajors',false,{sMajorCategory:sMajorCategory,bShowEmptyEntries:bShowEmptyEntries},succeededCallback,failedCallback,userContext); }}
Searches.Ajax.College.Major.registerClass('Searches.Ajax.College.Major',Sys.Net.WebServiceProxy);
Searches.Ajax.College.Major._staticInstance = new Searches.Ajax.College.Major();
Searches.Ajax.College.Major.set_path = function(value) { Searches.Ajax.College.Major._staticInstance._path = value; }
Searches.Ajax.College.Major.get_path = function() { return Searches.Ajax.College.Major._staticInstance._path; }
Searches.Ajax.College.Major.set_timeout = function(value) { Searches.Ajax.College.Major._staticInstance._timeout = value; }
Searches.Ajax.College.Major.get_timeout = function() { return Searches.Ajax.College.Major._staticInstance._timeout; }
Searches.Ajax.College.Major.set_defaultUserContext = function(value) { Searches.Ajax.College.Major._staticInstance._userContext = value; }
Searches.Ajax.College.Major.get_defaultUserContext = function() { return Searches.Ajax.College.Major._staticInstance._userContext; }
Searches.Ajax.College.Major.set_defaultSucceededCallback = function(value) { Searches.Ajax.College.Major._staticInstance._succeeded = value; }
Searches.Ajax.College.Major.get_defaultSucceededCallback = function() { return Searches.Ajax.College.Major._staticInstance._succeeded; }
Searches.Ajax.College.Major.set_defaultFailedCallback = function(value) { Searches.Ajax.College.Major._staticInstance._failed = value; }
Searches.Ajax.College.Major.get_defaultFailedCallback = function() { return Searches.Ajax.College.Major._staticInstance._failed; }
Searches.Ajax.College.Major.set_path("/Services/Ajax/College/Major.asmx");
Searches.Ajax.College.Major.AJAX_GetMajors= function(sMajorCategory,bShowEmptyEntries,onSuccess,onFailed,userContext) {Searches.Ajax.College.Major._staticInstance.AJAX_GetMajors(sMajorCategory,bShowEmptyEntries,onSuccess,onFailed,userContext); }
