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