Ejemplo n.º 1
0
        private static void Tester(ITurkey turkey)
        {
            Console.WriteLine("Here the method called is Gobble that belongs to Turkey \n");

            turkey.Fly();
            turkey.Gobble();
        }
Ejemplo n.º 2
0
 public void Quack()
 {
     _turkey.Gobble();
 }
Ejemplo n.º 3
0
 public void Quack()
 {
     moTurkey.Gobble();
 }
 public string Quack()
 {
     return(_turkey.Gobble());
 }
Ejemplo n.º 5
0
 public void Quarck()
 {
     turkey.Gobble();
 }
Ejemplo n.º 6
0
 static void TestTurkey(ITurkey turkey)
 {
     turkey.Gobble();
     turkey.Fly();
 }
Ejemplo n.º 7
0
 public static void TurkeyClient(ITurkey turkey)
 {
     Console.WriteLine(turkey.Gobble());
     Console.WriteLine(turkey.Fly());
 }
Ejemplo n.º 8
0
 public override void Quack()
 {
     _turkey.Gobble();
 }
Ejemplo n.º 9
0
 public void Quack() => turkey.Gobble();
Ejemplo n.º 10
0
 static void TestDuck(ITurkey turkeyInterface)
 {
     turkeyInterface.Gobble();
     turkeyInterface.Fly();
 }
Ejemplo n.º 11
0
 private static void TestTurkey(ITurkey turkey)
 {
     turkey.Gobble();
     turkey.Fly();
 }
 public override void PerformQuack()
 {
     turkey.Gobble();
 }
Ejemplo n.º 13
0
 public static void TestTurkey(ITurkey t)
 {
     t.Gobble();
     t.Fly();
 }
 public void Quack()
 {
     _turkey.Gobble(); // imitate quack :)
 }
Ejemplo n.º 15
0
 static void TestTurkey(ITurkey turkey)
 {
     turkey.FLy();
     turkey.Gobble();
 }