Ejemplo n.º 1
0
 public static void SendCommand <T>(this ICanSendCommand self) where T : ICommand, new()
 {
     self.Architecture.SendCommand <T>();
 }
Ejemplo n.º 2
0
 public static void SendCommand(this ICanSendCommand self, ICommand command)
 {
     self.Architecture.SendCommand(command);
 }
Ejemplo n.º 3
0
 public static void SendCommand <T>(this ICanSendCommand self, T command) where T : ICommand
 {
     self.GetArchitecture().SendCommand <T>(command);
 }