Example #1
0
File: Taxi.cs Project: flapek/TEST
 public abstract void VisitCustomer(TaxiCustomer customer);
Example #2
0
 public override void VisitCustomer(TaxiCustomer customer) => Console.WriteLine("Customer {0} has been visited by {1}", customer.name, GetType().Name);