Пример #1
0
 public SchoolRepository(IMapper mapper, ISchoolAppDbContext context) : base(mapper, context)
 {
 }
Пример #2
0
 public EnrollmentRepository(IMapper mapper, ISchoolAppDbContext context) : base(mapper, context)
 {
     _mapper  = mapper;
     _context = context;
 }
Пример #3
0
 public StudyPlanDetailRepository(IMapper mapper, ISchoolAppDbContext context) : base(mapper, context)
 {
     _mapper  = mapper;
     _context = context;
 }
Пример #4
0
 public StudentEnrolledInCourseRepository(IMapper mapper, ISchoolAppDbContext context) : base(mapper, context)
 {
 }
Пример #5
0
 protected EntityFrameworkRepository(IMapper mapper, ISchoolAppDbContext context)
 {
     _mapper  = mapper;
     _context = context;
 }