示例#1
0
 public AbstractLinkTypeController(
     ApiSettings settings,
     ILogger <AbstractLinkTypeController> logger,
     ITransactionCoordinator transactionCoordinator,
     ILinkTypeService linkTypeService,
     IApiLinkTypeModelMapper linkTypeModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.LinkTypeService     = linkTypeService;
     this.LinkTypeModelMapper = linkTypeModelMapper;
 }
示例#2
0
 public LinkTypeController(
     ApiSettings settings,
     ILogger <LinkTypeController> logger,
     ITransactionCoordinator transactionCoordinator,
     ILinkTypeService linkTypeService,
     IApiLinkTypeModelMapper linkTypeModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            linkTypeService,
            linkTypeModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }