Example #1
0
 public void initialiseRentControl()
 {
     if (this.rentControl == null)
     {
         this.rentControl = new RentVehicleControl(this);
     }
 }
 public FormRentDetails(RentVehicleControl rentvehiclecontrol) : this()
 {
     this.rentvehiclecontrol = rentvehiclecontrol;
 }
Example #3
0
 public void closeUseCase(RentVehicleControl rentControl)
 {
     rentControl.destroy();
     this.rentControl = null;
 }
Example #4
0
 public FormRentDetails(RentVehicleControl rentvehiclecontrol)
 {
     InitializeComponent();
     this.rentvehiclecontrol = rentvehiclecontrol;
     record = new RentalRecord();
 }
 public FormCategorySearch(RentVehicleControl rentvehiclecontrol)
 {
     InitializeComponent();
     this.rentvehiclecontrol = rentvehiclecontrol;
 }
Example #6
0
 public FormAvailableVehicles(RentVehicleControl rentvehiclecontrol)
 {
     InitializeComponent();
     this.rentvehiclecontrol = rentvehiclecontrol;
 }