Exemplo n.º 1
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!IsPostBack)
     {
         ControlLoadData();
         BookingLoadData();
         WarningShowIfNotBookingOwner();
         WarningShowIfCruiseLocked();
         rptBusType.DataSource = BookingViewBLL.BusTypeGetAll().Future().ToList();
         rptBusType.DataBind();
         if (Booking.Transfer_Service == "One Way")
         {
             rbtTransferService_OneWay.Checked = true;
         }
         else
         if (Booking.Transfer_Service == "Two Way")
         {
             rbtTransferService_TwoWay.Checked = true;
         }
         txtTransfer_Note.Text = Booking.Transfer_Note;
     }
     BookingHistorySave();
 }