public AbstractCertificateController(
     ApiSettings settings,
     ILogger <AbstractCertificateController> logger,
     ITransactionCoordinator transactionCoordinator,
     ICertificateService certificateService,
     IApiCertificateModelMapper certificateModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.CertificateService     = certificateService;
     this.CertificateModelMapper = certificateModelMapper;
 }
Ejemplo n.º 2
0
 public CertificateController(
     ApiSettings settings,
     ILogger <CertificateController> logger,
     ITransactionCoordinator transactionCoordinator,
     ICertificateService certificateService,
     IApiCertificateModelMapper certificateModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            certificateService,
            certificateModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }