Example #1
0
 public CliRouteFinder(ICliControllerHost controllerHost, CliOptions cliOptions)
 {
     _controllerHost = controllerHost;
     _cliOptions     = cliOptions;
 }
Example #2
0
 public CliHost(ICliControllerHost controllerHost, CliOptions cliOptions)
 {
     _controllerHost = controllerHost;
     _cliOptions     = cliOptions;
 }
Example #3
0
 public static void RegisterController <T>(this ICliControllerHost cliControllerHost)
 {
     cliControllerHost.RegisterController(typeof(T));
 }