Type.registerNamespace('Kingpin.Services.Profile');
Kingpin.Services.Profile.Profile=function() {
Kingpin.Services.Profile.Profile.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
Kingpin.Services.Profile.Profile.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return Kingpin.Services.Profile.Profile._staticInstance.get_path();},
GetMajorList:function(succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetMajorList',false,{},succeededCallback,failedCallback,userContext); },
GetSchoolList:function(succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetSchoolList',false,{},succeededCallback,failedCallback,userContext); },
CheckBirthDate:function(birthdate,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'CheckBirthDate',false,{birthdate:birthdate},succeededCallback,failedCallback,userContext); },
CheckUserName:function(userName,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'CheckUserName',false,{userName:userName},succeededCallback,failedCallback,userContext); },
CheckPasswords:function(pass1,pass2,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'CheckPasswords',false,{pass1:pass1,pass2:pass2},succeededCallback,failedCallback,userContext); },
CheckEmail:function(email,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'CheckEmail',false,{email:email},succeededCallback,failedCallback,userContext); },
ParseResume:function(resumeUrl,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'ParseResume',false,{resumeUrl:resumeUrl},succeededCallback,failedCallback,userContext); }}
Kingpin.Services.Profile.Profile.registerClass('Kingpin.Services.Profile.Profile',Sys.Net.WebServiceProxy);
Kingpin.Services.Profile.Profile._staticInstance = new Kingpin.Services.Profile.Profile();
Kingpin.Services.Profile.Profile.set_path = function(value) { Kingpin.Services.Profile.Profile._staticInstance.set_path(value); }
Kingpin.Services.Profile.Profile.get_path = function() { return Kingpin.Services.Profile.Profile._staticInstance.get_path(); }
Kingpin.Services.Profile.Profile.set_timeout = function(value) { Kingpin.Services.Profile.Profile._staticInstance.set_timeout(value); }
Kingpin.Services.Profile.Profile.get_timeout = function() { return Kingpin.Services.Profile.Profile._staticInstance.get_timeout(); }
Kingpin.Services.Profile.Profile.set_defaultUserContext = function(value) { Kingpin.Services.Profile.Profile._staticInstance.set_defaultUserContext(value); }
Kingpin.Services.Profile.Profile.get_defaultUserContext = function() { return Kingpin.Services.Profile.Profile._staticInstance.get_defaultUserContext(); }
Kingpin.Services.Profile.Profile.set_defaultSucceededCallback = function(value) { Kingpin.Services.Profile.Profile._staticInstance.set_defaultSucceededCallback(value); }
Kingpin.Services.Profile.Profile.get_defaultSucceededCallback = function() { return Kingpin.Services.Profile.Profile._staticInstance.get_defaultSucceededCallback(); }
Kingpin.Services.Profile.Profile.set_defaultFailedCallback = function(value) { Kingpin.Services.Profile.Profile._staticInstance.set_defaultFailedCallback(value); }
Kingpin.Services.Profile.Profile.get_defaultFailedCallback = function() { return Kingpin.Services.Profile.Profile._staticInstance.get_defaultFailedCallback(); }
Kingpin.Services.Profile.Profile.set_path("/Services/Profile/Profile.asmx");
Kingpin.Services.Profile.Profile.GetMajorList= function(onSuccess,onFailed,userContext) {Kingpin.Services.Profile.Profile._staticInstance.GetMajorList(onSuccess,onFailed,userContext); }
Kingpin.Services.Profile.Profile.GetSchoolList= function(onSuccess,onFailed,userContext) {Kingpin.Services.Profile.Profile._staticInstance.GetSchoolList(onSuccess,onFailed,userContext); }
Kingpin.Services.Profile.Profile.CheckBirthDate= function(birthdate,onSuccess,onFailed,userContext) {Kingpin.Services.Profile.Profile._staticInstance.CheckBirthDate(birthdate,onSuccess,onFailed,userContext); }
Kingpin.Services.Profile.Profile.CheckUserName= function(userName,onSuccess,onFailed,userContext) {Kingpin.Services.Profile.Profile._staticInstance.CheckUserName(userName,onSuccess,onFailed,userContext); }
Kingpin.Services.Profile.Profile.CheckPasswords= function(pass1,pass2,onSuccess,onFailed,userContext) {Kingpin.Services.Profile.Profile._staticInstance.CheckPasswords(pass1,pass2,onSuccess,onFailed,userContext); }
Kingpin.Services.Profile.Profile.CheckEmail= function(email,onSuccess,onFailed,userContext) {Kingpin.Services.Profile.Profile._staticInstance.CheckEmail(email,onSuccess,onFailed,userContext); }
Kingpin.Services.Profile.Profile.ParseResume= function(resumeUrl,onSuccess,onFailed,userContext) {Kingpin.Services.Profile.Profile._staticInstance.ParseResume(resumeUrl,onSuccess,onFailed,userContext); }
