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