QueryDefault_Hand.cs 325 B

123456789101112131415
  1. namespace Blue
  2. {
  3. public class QueryDefault_Hand : ICommandHandler
  4. {
  5. public void ExcuteCommand(ICommand command)
  6. {
  7. command.OnExcute();
  8. }
  9. public void ExcuteCommand<T>() where T : ICommand, new()
  10. {
  11. ExcuteCommand(new T());
  12. }
  13. }
  14. }