示例#1
0
 public ECardInterface.ECardService.ResultMessage AddParkingHistory(string userID, int parkingSpaceApplicationID, string license, System.DateTime inTime, System.DateTime outTime, double surplusTime, string remarks, string info1, string info2)
 {
     ECardInterface.ECardService.AddParkingHistoryRequest inValue = new ECardInterface.ECardService.AddParkingHistoryRequest();
     inValue.Body        = new ECardInterface.ECardService.AddParkingHistoryRequestBody();
     inValue.Body.userID = userID;
     inValue.Body.parkingSpaceApplicationID = parkingSpaceApplicationID;
     inValue.Body.license     = license;
     inValue.Body.inTime      = inTime;
     inValue.Body.outTime     = outTime;
     inValue.Body.surplusTime = surplusTime;
     inValue.Body.remarks     = remarks;
     inValue.Body.info1       = info1;
     inValue.Body.info2       = info2;
     ECardInterface.ECardService.AddParkingHistoryResponse retVal = ((ECardInterface.ECardService.NightParkingSoap)(this)).AddParkingHistory(inValue);
     return(retVal.Body.AddParkingHistoryResult);
 }
示例#2
0
 ECardInterface.ECardService.AddParkingHistoryResponse ECardInterface.ECardService.NightParkingSoap.AddParkingHistory(ECardInterface.ECardService.AddParkingHistoryRequest request)
 {
     return(base.Channel.AddParkingHistory(request));
 }