Exemple #1
0
 public AbstractVPersonController(
     ApiSettings settings,
     ILogger <AbstractVPersonController> logger,
     ITransactionCoordinator transactionCoordinator,
     IVPersonService vPersonService,
     IApiVPersonModelMapper vPersonModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.VPersonService     = vPersonService;
     this.VPersonModelMapper = vPersonModelMapper;
 }
Exemple #2
0
 public VPersonController(
     ApiSettings settings,
     ILogger <VPersonController> logger,
     ITransactionCoordinator transactionCoordinator,
     IVPersonService vPersonService,
     IApiVPersonServerModelMapper vPersonModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.VPersonService     = vPersonService;
     this.VPersonModelMapper = vPersonModelMapper;
     this.BulkInsertLimit    = 250;
     this.MaxLimit           = 1000;
     this.DefaultLimit       = 250;
 }