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