//Define the Invoker Object.

//The Invoker class (object) is called by the client and is used to action the required commands.
//Note the creation of the Receiver object, which will have the necessary methods defined to action the command.
//In this case, there is only one Receiver object used, but could define multiple Receiver objects, if required.
public class Invoker
{
private Receiver m_receiver;

public string ClipBoard { private get; set; }

public int Count { get; private set; }

public Invoker(string name)
{
m_receiver = new Receiver(name);
Count = 0;
}

public void Execute(ICommand command)
{
if (command.GetType() == typeof(Paste))
{
m_receiver.ClipBoard = ClipBoard;
}

command.Receiver = m_receiver;
command.Execute();
Count++;
}

public void Redo(ICommand command)
{
if (command.GetType() == typeof(Paste))
{
m_receiver.ClipBoard = ClipBoard;
}

command.Receiver = m_receiver;
command.Redo();
Count++;
}

public void Undo(ICommand command)
{
command.Receiver = m_receiver;
command.Undo();
Count++;
}

public void Log()
{
Console.WriteLine("Logged {0} commands", Count);
}
}