コード例 #1
0
 public ControllerRouteHandler(
     IControllerRegistry controllerRegistry,
     Func <TController, IHttpResponse> handlerFunc)
 {
     this.controllerRegistry = controllerRegistry;
     this.handlerFunc        = handlerFunc;
 }
コード例 #2
0
ファイル: MvcRequestRouter.cs プロジェクト: Ryks/detergent
 public MvcRequestRouter(IControllerRegistry controllerRegistry)
 {
     this.controllerRegistry = controllerRegistry;
 }