Ejemplo n.º 1
0
 public StartMenu(GarageManager i_GarageManager)
 {
     this.r_GarageManager       = i_GarageManager;
     this.r_UserInputValidation = new UserInputValidation();
 }
Ejemplo n.º 2
0
 public GarageManager()
 {
     this.r_Garage = new Garage();
     this.r_UserInputValidation = new UserInputValidation();
 }
Ejemplo n.º 3
0
 public VehicleAdder()
 {
     this.r_Factory    = new VehicleFactory();
     this.r_Validation = new UserInputValidation();
     this.m_IsReady    = false;
 }