Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace World
- {
- class Executor
- {
- // public Student Student { get; set; }
- private IIntroducable entity;
- public IIntroducable Entity
- {
- get { return entity; }
- set { entity = value; }
- }
- public Executor(IIntroducable entity)
- {
- this.entity = entity;
- }
- public void MakeItSpeak()
- {
- Console.WriteLine("---------Hahaha I will make you speak---------");
- entity.IntroduceYourSelf();
- Console.WriteLine("------------Hahah I told you-------------");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement