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 World1
- {
- class Executor
- {
- private IIntorducable entity;
- public IIntorducable Entity
- {
- get { return entity; }
- set { entity = value; }
- }
- public Executor(IIntorducable entity)
- {
- this.entity = entity;
- }
- public void MakeHimSpeak()
- {
- Console.WriteLine("-------------- I am the executor! I will make you speak -----------");
- entity.IntroduceYourSelf();
- Console.WriteLine("-------------- Hahah I told! -----------");
- }
- }
- }
Add Comment
Please, Sign In to add comment