1namespace gorilla.migrations 2{ 3 public interface ParameterizedCommand<T> 4 { 5 void run_against(T item); 6 } 7}