public AbstractShiftController(
     ApiSettings settings,
     ILogger <AbstractShiftController> logger,
     ITransactionCoordinator transactionCoordinator,
     IShiftService shiftService,
     IApiShiftModelMapper shiftModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.ShiftService     = shiftService;
     this.ShiftModelMapper = shiftModelMapper;
 }
示例#2
0
 public ShiftController(
     ApiSettings settings,
     ILogger <ShiftController> logger,
     ITransactionCoordinator transactionCoordinator,
     IShiftService shiftService,
     IApiShiftModelMapper shiftModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            shiftService,
            shiftModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }