コード例 #1
0
 public IswVehicleRentalApp()
 {
     InitializeComponent();
     // businessControl = BusinessController.getBusinessController();
     businessControl     = BusinessController.getBusinessController();
     listReservationForm = new ListReservationsForm(businessControl);
     newReservationForm  = new NewReservationForm(businessControl);
 }
コード例 #2
0
ファイル: NewPersonForm.cs プロジェクト: DavidAG2000/ETSINF-3
 public NewPersonForm(NewReservationForm newReservationForm, BusinessController control)
 {
     InitializeComponent();
     this.newReservationForm = newReservationForm;
     this.businessControl    = control;
 }
コード例 #3
0
 public NewCustomerForm(NewReservationForm newReservationForm, BusinessController control) : base(newReservationForm, control)
 {
     InitializeComponent();
 }