コード例 #1
0
 public AbstractBadgeController(
     ApiSettings settings,
     ILogger <AbstractBadgeController> logger,
     ITransactionCoordinator transactionCoordinator,
     IBadgeService badgeService,
     IApiBadgeModelMapper badgeModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.BadgeService     = badgeService;
     this.BadgeModelMapper = badgeModelMapper;
 }
コード例 #2
0
ファイル: BadgeController.cs プロジェクト: Vin2454/samples
 public BadgeController(
     ApiSettings settings,
     ILogger <BadgeController> logger,
     ITransactionCoordinator transactionCoordinator,
     IBadgeService badgeService,
     IApiBadgeModelMapper badgeModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            badgeService,
            badgeModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }