main
1namespace gorilla.migrations.utility
2{
3 static public class CommandExtensions
4 {
5 static public Command then(this Command first_command, Command next_command)
6 {
7 return new CompositeCommand(first_command, next_command);
8 }
9 }
10}