public AbstractStudentController(
     ApiSettings settings,
     ILogger <AbstractStudentController> logger,
     ITransactionCoordinator transactionCoordinator,
     IStudentService studentService,
     IApiStudentModelMapper studentModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.StudentService     = studentService;
     this.StudentModelMapper = studentModelMapper;
 }
Exemple #2
0
 public StudentController(
     ApiSettings settings,
     ILogger <StudentController> logger,
     ITransactionCoordinator transactionCoordinator,
     IStudentService studentService,
     IApiStudentModelMapper studentModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            studentService,
            studentModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }