QueryDefault_Hand.cs 345 B

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