var StudentSupport=function() {
StudentSupport.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
StudentSupport.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return StudentSupport._staticInstance.get_path();},
SendQuestion:function(ReEmail,sSubject,sContent,succeededCallback, failedCallback, userContext) {
/// <param name="ReEmail" type="String">System.String</param>
/// <param name="sSubject" type="String">System.String</param>
/// <param name="sContent" 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(), 'SendQuestion',false,{ReEmail:ReEmail,sSubject:sSubject,sContent:sContent},succeededCallback,failedCallback,userContext); },
GetStudentInfo:function(csn,idcard,succeededCallback, failedCallback, userContext) {
/// <param name="csn" type="String">System.String</param>
/// <param name="idcard" 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(), 'GetStudentInfo',false,{csn:csn,idcard:idcard},succeededCallback,failedCallback,userContext); }}
StudentSupport.registerClass('StudentSupport',Sys.Net.WebServiceProxy);
StudentSupport._staticInstance = new StudentSupport();
StudentSupport.set_path = function(value) {
StudentSupport._staticInstance.set_path(value); }
StudentSupport.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return StudentSupport._staticInstance.get_path();}
StudentSupport.set_timeout = function(value) {
StudentSupport._staticInstance.set_timeout(value); }
StudentSupport.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return StudentSupport._staticInstance.get_timeout(); }
StudentSupport.set_defaultUserContext = function(value) { 
StudentSupport._staticInstance.set_defaultUserContext(value); }
StudentSupport.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return StudentSupport._staticInstance.get_defaultUserContext(); }
StudentSupport.set_defaultSucceededCallback = function(value) { 
 StudentSupport._staticInstance.set_defaultSucceededCallback(value); }
StudentSupport.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return StudentSupport._staticInstance.get_defaultSucceededCallback(); }
StudentSupport.set_defaultFailedCallback = function(value) { 
StudentSupport._staticInstance.set_defaultFailedCallback(value); }
StudentSupport.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return StudentSupport._staticInstance.get_defaultFailedCallback(); }
StudentSupport.set_enableJsonp = function(value) { StudentSupport._staticInstance.set_enableJsonp(value); }
StudentSupport.get_enableJsonp = function() { 
/// <value type="Boolean">Specifies whether the service supports JSONP for cross domain calling.</value>
return StudentSupport._staticInstance.get_enableJsonp(); }
StudentSupport.set_jsonpCallbackParameter = function(value) { StudentSupport._staticInstance.set_jsonpCallbackParameter(value); }
StudentSupport.get_jsonpCallbackParameter = function() { 
/// <value type="String">Specifies the parameter name that contains the callback function name for a JSONP request.</value>
return StudentSupport._staticInstance.get_jsonpCallbackParameter(); }
StudentSupport.set_path("/ZksAsura/Web/03_Services/StudentSupport.asmx");
StudentSupport.SendQuestion= function(ReEmail,sSubject,sContent,onSuccess,onFailed,userContext) {
/// <param name="ReEmail" type="String">System.String</param>
/// <param name="sSubject" type="String">System.String</param>
/// <param name="sContent" 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>
StudentSupport._staticInstance.SendQuestion(ReEmail,sSubject,sContent,onSuccess,onFailed,userContext); }
StudentSupport.GetStudentInfo= function(csn,idcard,onSuccess,onFailed,userContext) {
/// <param name="csn" type="String">System.String</param>
/// <param name="idcard" 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>
StudentSupport._staticInstance.GetStudentInfo(csn,idcard,onSuccess,onFailed,userContext); }

