Ejemplo n.º 1
0
 public AbstractMachineController(
     ApiSettings settings,
     ILogger <AbstractMachineController> logger,
     ITransactionCoordinator transactionCoordinator,
     IMachineService machineService,
     IApiMachineModelMapper machineModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.MachineService     = machineService;
     this.MachineModelMapper = machineModelMapper;
 }
Ejemplo n.º 2
0
 public MachineController(
     ApiSettings settings,
     ILogger <MachineController> logger,
     ITransactionCoordinator transactionCoordinator,
     IMachineService machineService,
     IApiMachineModelMapper machineModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            machineService,
            machineModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }