コード例 #1
0
 public AbstractTagSetController(
     ApiSettings settings,
     ILogger <AbstractTagSetController> logger,
     ITransactionCoordinator transactionCoordinator,
     ITagSetService tagSetService,
     IApiTagSetModelMapper tagSetModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.TagSetService     = tagSetService;
     this.TagSetModelMapper = tagSetModelMapper;
 }
コード例 #2
0
 public TagSetController(
     ApiSettings settings,
     ILogger <TagSetController> logger,
     ITransactionCoordinator transactionCoordinator,
     ITagSetService tagSetService,
     IApiTagSetModelMapper tagSetModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            tagSetService,
            tagSetModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }