wingman007

OOPPrinciplesStatic2аExecutron

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