//Hiennv  25/11/2014
 public frmTsk_CheckIn(frmMain afrmMain, string codeRoom, int customerType)
 {
     InitializeComponent();
     this.afrmMain = afrmMain;
     this.aCurrent_CodeRoom = codeRoom;
     this.customerType = customerType;
 }
 //Hiennv  26/11/2014
 public frmTsk_CheckInForRoomBooking(frmMain afrmMain, int IDBookingR,DateTime CheckoutPlan)
 {
     InitializeComponent();
     this.afrmMain = afrmMain;
     this.IDBookingR = IDBookingR;
     this.CheckoutPlan = CheckoutPlan;
     this.aCheckInEN = this.InitData(this.IDBookingR);
 }
 //Hiennv
 public frmTsk_Payment_Step1(frmMain afrmMain, int IDBookingR, int CustomerType, DateTime CheckInPlan, DateTime CheckOutPlan)
 {
     InitializeComponent();
     this.afrmMain = afrmMain;
     this.IDBookingR = IDBookingR;
     this.CustomerType = CustomerType;
     this.CheckInPlan = CheckInPlan;
     this.CheckOutPlan = CheckOutPlan;
 }
 // NgocBM
 // Form thanh toán được load tất cả các phòng chưa thanh toán bất kể loại nào
 public frmTsk_Payment_Step1(frmMain afrmMain)
 {
     InitializeComponent();
     this.afrmMain = afrmMain;
 }
 //Hiennv
 public frmTsk_Payment_Step1(frmMain afrmMain, int CustomerType)
 {
     InitializeComponent();
     this.afrmMain = afrmMain;
     this.CustomerType = CustomerType;
 }
 public frmIns_Rooms(frmMain afrmMain)
 {
     InitializeComponent();
     this.afrmMain = afrmMain;
 }
 //Hiennv  18/11/2014
 public frmTsk_CheckIn(frmMain afrmMain, int customerType)
 {
     InitializeComponent();
     this.afrmMain = afrmMain;
     this.customerType = customerType;
 }
 //Hiennv  18/11/2014
 public frmTsk_BookingForRoom(frmMain afrmMain, int customerType)
 {
     InitializeComponent();
     this.afrmMain = afrmMain;
     this.customerType = customerType;
 }