Exemplo n.º 1
0
 public abstract void Visit(FulltimeEmployee fulltime);
Exemplo n.º 2
0
 public override void Visit(FulltimeEmployee fulltime)
 {
     Console.WriteLine("The wage of fulltime is ...");
 }
Exemplo n.º 3
0
 public override void Visit(FulltimeEmployee fulltime)
 {
     Console.Write("The worktime of fulltime is ...");
     Console.Write("The overtime of fulltime is ...");
     Console.Write("The timeoff of fulltime is ...");
 }