public AbstractLibraryVariableSetController(
     ApiSettings settings,
     ILogger <AbstractLibraryVariableSetController> logger,
     ITransactionCoordinator transactionCoordinator,
     ILibraryVariableSetService libraryVariableSetService,
     IApiLibraryVariableSetModelMapper libraryVariableSetModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.LibraryVariableSetService     = libraryVariableSetService;
     this.LibraryVariableSetModelMapper = libraryVariableSetModelMapper;
 }
示例#2
0
 public LibraryVariableSetController(
     ApiSettings settings,
     ILogger <LibraryVariableSetController> logger,
     ITransactionCoordinator transactionCoordinator,
     ILibraryVariableSetService libraryVariableSetService,
     IApiLibraryVariableSetModelMapper libraryVariableSetModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            libraryVariableSetService,
            libraryVariableSetModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }