示例#1
0
 public bool CreateFee(ref eSAR.StudentFeeServiceRef.Fee fee, ref string message)
 {
     eSAR.StudentFeeServiceRef.CreateFeeRequest inValue = new eSAR.StudentFeeServiceRef.CreateFeeRequest();
     inValue.fee     = fee;
     inValue.message = message;
     eSAR.StudentFeeServiceRef.CreateFeeResponse retVal = ((eSAR.StudentFeeServiceRef.IFeeService)(this)).CreateFee(inValue);
     fee     = retVal.fee;
     message = retVal.message;
     return(retVal.CreateFeeResult);
 }
示例#2
0
 public CreateFeeResponse(bool CreateFeeResult, eSAR.StudentFeeServiceRef.Fee fee, string message)
 {
     this.CreateFeeResult = CreateFeeResult;
     this.fee             = fee;
     this.message         = message;
 }
示例#3
0
 public CreateFeeRequest(eSAR.StudentFeeServiceRef.Fee fee, string message)
 {
     this.fee     = fee;
     this.message = message;
 }