コード例 #1
0
 public AbstractContactTypeController(
     ApiSettings settings,
     ILogger <AbstractContactTypeController> logger,
     ITransactionCoordinator transactionCoordinator,
     IContactTypeService contactTypeService,
     IApiContactTypeModelMapper contactTypeModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.ContactTypeService     = contactTypeService;
     this.ContactTypeModelMapper = contactTypeModelMapper;
 }
コード例 #2
0
 public ContactTypeController(
     ApiSettings settings,
     ILogger <ContactTypeController> logger,
     ITransactionCoordinator transactionCoordinator,
     IContactTypeService contactTypeService,
     IApiContactTypeModelMapper contactTypeModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            contactTypeService,
            contactTypeModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }