public AbstractTeacherSkillController(
     ApiSettings settings,
     ILogger <AbstractTeacherSkillController> logger,
     ITransactionCoordinator transactionCoordinator,
     ITeacherSkillService teacherSkillService,
     IApiTeacherSkillModelMapper teacherSkillModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.TeacherSkillService     = teacherSkillService;
     this.TeacherSkillModelMapper = teacherSkillModelMapper;
 }
Ejemplo n.º 2
0
 public TeacherSkillController(
     ApiSettings settings,
     ILogger <TeacherSkillController> logger,
     ITransactionCoordinator transactionCoordinator,
     ITeacherSkillService teacherSkillService,
     IApiTeacherSkillModelMapper teacherSkillModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            teacherSkillService,
            teacherSkillModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }