示例#1
0
 public AbstractPersonPhoneController(
     ApiSettings settings,
     ILogger <AbstractPersonPhoneController> logger,
     ITransactionCoordinator transactionCoordinator,
     IPersonPhoneService personPhoneService,
     IApiPersonPhoneModelMapper personPhoneModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.PersonPhoneService     = personPhoneService;
     this.PersonPhoneModelMapper = personPhoneModelMapper;
 }
示例#2
0
 public PersonPhoneController(
     ApiSettings settings,
     ILogger <PersonPhoneController> logger,
     ITransactionCoordinator transactionCoordinator,
     IPersonPhoneService personPhoneService,
     IApiPersonPhoneModelMapper personPhoneModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            personPhoneService,
            personPhoneModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }