Beispiel #1
0
        public static void Main(string[] args)
        {
            Chofer miChofer = new Chofer("Pedro");
            Taxi   miTaxi   = new Taxi(miChofer, "AHJ-1050");

            miTaxi.printChofer();
            miTaxi.printMatricula();


            // TODO: Implement Functionality Here

            Console.Write("Press any key to continue . . . ");
            Console.ReadKey(true);
        }
Beispiel #2
0
 public Taxi(Chofer chofer, String matricula)
 {
     this.chofer    = chofer;
     this.matricula = matricula;
 }