public void Handle(SayHelloCommand command)
 {
     _printer.Print(string.Format("Hello {0}", command.Name));
 }
 public static void Handle(SayHelloCommand command, IPrint printer)
 {
     printer.Print(string.Format("Hello {0}", command.Name));
 }