public BatchDefaultControllerBuilder(
     // IIocManager iocManager,
     IDefaultControllerBuilderFactory controllerBuilderFactory,
     string servicePrefix, IEnumerable <Type> types)
 {
     Check.NotNull(types, "types");
     // _iocManager = iocManager;
     _controllerBuilderFactory = controllerBuilderFactory;
     _types         = types;
     _servicePrefix = servicePrefix;
 }
Пример #2
0
 public BatchMvcControllerBuilder(IDefaultControllerBuilderFactory controllerBuilderFactory, string servicePrefix, IEnumerable <Type> servicesTypes)
     : base(controllerBuilderFactory, servicePrefix, servicesTypes)
 {
 }