public AbstractArtifactController(
     ApiSettings settings,
     ILogger <AbstractArtifactController> logger,
     ITransactionCoordinator transactionCoordinator,
     IArtifactService artifactService,
     IApiArtifactModelMapper artifactModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.ArtifactService     = artifactService;
     this.ArtifactModelMapper = artifactModelMapper;
 }
 public ArtifactController(
     ApiSettings settings,
     ILogger <ArtifactController> logger,
     ITransactionCoordinator transactionCoordinator,
     IArtifactService artifactService,
     IApiArtifactModelMapper artifactModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            artifactService,
            artifactModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }