/// <summary>
 /// Return <c>true</c> if <paramref name="type"/> is a command.
 /// </summary>
 public static bool IsCommand(TypeDescription type)
 {
     return(type.ImplementsType("Pitstop.Infrastructure.Messaging.Command"));
 }