namespace Blue { public interface IQueryCommandHandler { void ExcuteQueryCommand(ICommand command); void ExcuteQueryCommand<T>() where T:ICommand,new(); } }