Advertisement
wingman007

OOP2016FullTime3PrinciplesExecutor

May 4th, 2016
247
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.75 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 World
  8. {
  9.     class Executor
  10.     {
  11.         // public Student Student { get; set; }
  12.         private IIntroducable entity;
  13.  
  14.         public IIntroducable Entity
  15.         {
  16.             get { return entity; }
  17.             set { entity = value; }
  18.         }
  19.  
  20.         public Executor(IIntroducable entity)
  21.         {
  22.             this.entity = entity;
  23.         }
  24.  
  25.         public void MakeItSpeak()
  26.         {
  27.             Console.WriteLine("---------Hahaha I will make you speak---------");
  28.             entity.IntroduceYourSelf();
  29.             Console.WriteLine("------------Hahah I told you-------------");
  30.         }
  31.  
  32.     }
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement