コード例 #1
0
 public AbstractLinkLogController(
     ApiSettings settings,
     ILogger <AbstractLinkLogController> logger,
     ITransactionCoordinator transactionCoordinator,
     ILinkLogService linkLogService,
     IApiLinkLogModelMapper linkLogModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.LinkLogService     = linkLogService;
     this.LinkLogModelMapper = linkLogModelMapper;
 }
コード例 #2
0
ファイル: LinkLogController.cs プロジェクト: daniefer/samples
 public LinkLogController(
     ApiSettings settings,
     ILogger <LinkLogController> logger,
     ITransactionCoordinator transactionCoordinator,
     ILinkLogService linkLogService,
     IApiLinkLogModelMapper linkLogModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            linkLogService,
            linkLogModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }