public AbstractVoteTypeController(
     ApiSettings settings,
     ILogger <AbstractVoteTypeController> logger,
     ITransactionCoordinator transactionCoordinator,
     IVoteTypeService voteTypeService,
     IApiVoteTypeModelMapper voteTypeModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.VoteTypeService     = voteTypeService;
     this.VoteTypeModelMapper = voteTypeModelMapper;
 }
예제 #2
0
 public VoteTypeController(
     ApiSettings settings,
     ILogger <VoteTypeController> logger,
     ITransactionCoordinator transactionCoordinator,
     IVoteTypeService voteTypeService,
     IApiVoteTypeModelMapper voteTypeModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            voteTypeService,
            voteTypeModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }