Example #1
0
 public AbstractEmployeePayHistoryController(
     ApiSettings settings,
     ILogger <AbstractEmployeePayHistoryController> logger,
     ITransactionCoordinator transactionCoordinator,
     IEmployeePayHistoryService employeePayHistoryService,
     IApiEmployeePayHistoryModelMapper employeePayHistoryModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.EmployeePayHistoryService     = employeePayHistoryService;
     this.EmployeePayHistoryModelMapper = employeePayHistoryModelMapper;
 }
 public EmployeePayHistoryController(
     ApiSettings settings,
     ILogger <EmployeePayHistoryController> logger,
     ITransactionCoordinator transactionCoordinator,
     IEmployeePayHistoryService employeePayHistoryService,
     IApiEmployeePayHistoryModelMapper employeePayHistoryModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            employeePayHistoryService,
            employeePayHistoryModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }