|
|
@ -255,19 +255,39 @@ namespace EasyBL.WEBAPP.WSM |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public ResponseMessage SaveBooking(SETB_SAL_Booking Booking) { |
|
|
|
//public ResponseMessage SaveBooking(SETB_SAL_Booking Booking) {
|
|
|
|
|
|
|
|
// ResponseMessage rsResult = null;
|
|
|
|
|
|
|
|
// if (string.IsNullOrEmpty(Booking.BookingID))
|
|
|
|
// {
|
|
|
|
// // insert
|
|
|
|
// rsResult = Insert(Booking);
|
|
|
|
// }
|
|
|
|
// else {
|
|
|
|
// // update
|
|
|
|
// rsResult = UpdateBooking(Booking);
|
|
|
|
// }
|
|
|
|
|
|
|
|
// return rsResult;
|
|
|
|
|
|
|
|
//}
|
|
|
|
|
|
|
|
public ResponseMessage SaveBooking(SETB_SAL_BookingOnline Booking) |
|
|
|
{ |
|
|
|
|
|
|
|
ResponseMessage rsResult = null; |
|
|
|
|
|
|
|
if (string.IsNullOrEmpty(Booking.BookingID)) |
|
|
|
{ |
|
|
|
// insert
|
|
|
|
rsResult = Insert(Booking); |
|
|
|
} |
|
|
|
else { |
|
|
|
// update
|
|
|
|
rsResult = UpdateBooking(Booking); |
|
|
|
} |
|
|
|
//if (string.IsNullOrEmpty(Booking.BookingID))
|
|
|
|
//{
|
|
|
|
// // insert
|
|
|
|
// rsResult = Insert(Booking);
|
|
|
|
//}
|
|
|
|
//else
|
|
|
|
//{
|
|
|
|
// // update
|
|
|
|
// rsResult = UpdateBooking(Booking);
|
|
|
|
//}
|
|
|
|
|
|
|
|
return rsResult; |
|
|
|
|
|
|
|