ICommandHandler.cs 178 B

12345678
  1. namespace Blue
  2. {
  3. public interface ICommandHandler
  4. {
  5. void ExcuteCommand(ICommand command);
  6. void ExcuteCommand<T>() where T:ICommand,new();
  7. }
  8. }