IQueryCommandHandler.cs 185 B

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