wingman007

OOP4BeginnersExecutor

Mar 25th, 2016
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.72 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 World1
  8. {
  9.     class Executor
  10.     {
  11.         private IIntorducable entity;
  12.         public IIntorducable Entity
  13.         {
  14.             get { return entity; }
  15.             set { entity = value; }
  16.         }
  17.  
  18.         public Executor(IIntorducable entity)
  19.         {
  20.             this.entity = entity;
  21.         }
  22.  
  23.         public void MakeHimSpeak()
  24.         {
  25.             Console.WriteLine("-------------- I am the executor! I will make you speak -----------");
  26.             entity.IntroduceYourSelf();
  27.             Console.WriteLine("-------------- Hahah I told! -----------");
  28.         }
  29.     }
  30. }
Add Comment
Please, Sign In to add comment