コード例 #1
0
 public AbstractTagController(
     ApiSettings settings,
     ILogger <AbstractTagController> logger,
     ITransactionCoordinator transactionCoordinator,
     ITagService tagService,
     IApiTagModelMapper tagModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.TagService     = tagService;
     this.TagModelMapper = tagModelMapper;
 }
コード例 #2
0
ファイル: TagController.cs プロジェクト: Vin2454/samples
 public TagController(
     ApiSettings settings,
     ILogger <TagController> logger,
     ITransactionCoordinator transactionCoordinator,
     ITagService tagService,
     IApiTagModelMapper tagModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            tagService,
            tagModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }