Beispiel #1
0
 public bool UpdateTimeslot(ref eSAR.TimeslotServiceRef.Timeslot timeslot, ref string message)
 {
     eSAR.TimeslotServiceRef.UpdateTimeslotRequest inValue = new eSAR.TimeslotServiceRef.UpdateTimeslotRequest();
     inValue.timeslot = timeslot;
     inValue.message  = message;
     eSAR.TimeslotServiceRef.UpdateTimeslotResponse retVal = ((eSAR.TimeslotServiceRef.ITimeslotService)(this)).UpdateTimeslot(inValue);
     timeslot = retVal.timeslot;
     message  = retVal.message;
     return(retVal.UpdateTimeslotResult);
 }
Beispiel #2
0
 public UpdateTimeslotResponse(bool UpdateTimeslotResult, eSAR.TimeslotServiceRef.Timeslot timeslot, string message)
 {
     this.UpdateTimeslotResult = UpdateTimeslotResult;
     this.timeslot             = timeslot;
     this.message = message;
 }
Beispiel #3
0
 public UpdateTimeslotRequest(eSAR.TimeslotServiceRef.Timeslot timeslot, string message)
 {
     this.timeslot = timeslot;
     this.message  = message;
 }