blob: 06f9d0f983c157933f9e7922dbc0227c21179710 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
using Gorilla.Commons.Utility.Core;
namespace MoMoney.boot
{
class hookup
{
static public Command the<Command>() where Command : ICommand, new()
{
return new Command();
}
}
}
|