예제 #1
0
 public string makeRoomReservation(string CardType, string GuestAccount, string GuestName, string GuestPassport, int Duration, int NumOfGuest, string RoomNo, string StartDate, string TotalCharge)
 {
     TA.Window.HBooking.ReservationRequest inValue = new TA.Window.HBooking.ReservationRequest();
     inValue.CardType      = CardType;
     inValue.GuestAccount  = GuestAccount;
     inValue.GuestName     = GuestName;
     inValue.GuestPassport = GuestPassport;
     inValue.Duration      = Duration;
     inValue.NumOfGuest    = NumOfGuest;
     inValue.RoomNo        = RoomNo;
     inValue.StartDate     = StartDate;
     inValue.TotalCharge   = TotalCharge;
     TA.Window.HBooking.ReservationResponse retVal = ((TA.Window.HBooking.IHotelDataInfoUpdate)(this)).makeRoomReservation(inValue);
     return(retVal.responseCode);
 }
예제 #2
0
 TA.Window.HBooking.ReservationResponse TA.Window.HBooking.IHotelDataInfoUpdate.makeRoomReservation(TA.Window.HBooking.ReservationRequest request)
 {
     return(base.Channel.makeRoomReservation(request));
 }