Exemple #1
0
 public AbstractTableController(
     ApiSettings settings,
     ILogger <AbstractTableController> logger,
     ITransactionCoordinator transactionCoordinator,
     ITableService tableService,
     IApiTableModelMapper tableModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.TableService     = tableService;
     this.TableModelMapper = tableModelMapper;
 }
Exemple #2
0
 public TableController(
     ApiSettings settings,
     ILogger <TableController> logger,
     ITransactionCoordinator transactionCoordinator,
     ITableService tableService,
     IApiTableModelMapper tableModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            tableService,
            tableModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }