Ejemplo n.º 1
0
 public static void Main()
 {
     Driver myDriver = new BenzDriver();
     ICar myCar = myDriver.DriverCar();
     myCar.run();
     Console.Read();
 }
Ejemplo n.º 2
0
 public static void Main()
 {
     IDriver myDriver = new BenzDriver();
     ISportCar myCar = myDriver.SportCarDriver();
     myCar.run();
     Console.Read();
 }