Advertisement
wingman007

OOPPrinciplesStatic1aExecutor

Mar 18th, 2016
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.56 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace World1a
  8. {
  9.     class Executor
  10.     {
  11.         IIntroducable Entity { get; set; }
  12.  
  13.         public Executor(IIntroducable entity)
  14.         {
  15.             Entity = entity;
  16.         }
  17.  
  18.         public void MakeHimSpeak()
  19.         {
  20.             Console.WriteLine("--------Hahah I will make you speak!-----");
  21.             Entity.IntroduceYourSelf();
  22.             Console.WriteLine("---------Hahah I told you!--------");
  23.         }
  24.     }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement