1namespace gorilla.migrations 2{ 3 public interface CommandRegistry 4 { 5 ParameterizedCommand<ConsoleArguments> command_for(ConsoleArguments arguments); 6 void register(ConsoleCommand command); 7 } 8}