Ejemplo n.º 1
0
 public StudentRepository(StudentLoggerContext studentLoggerContext)
 {
     context = studentLoggerContext;
 }
Ejemplo n.º 2
0
 public CourseRepository(StudentLoggerContext context)
     : base(context)
 {
 }
Ejemplo n.º 3
0
 public Students1Controller(StudentLoggerContext context)
 {
     _context = context;
 }
Ejemplo n.º 4
0
 public ActivitiesRepository(StudentLoggerContext context)
     : base(context)
 {
 }
Ejemplo n.º 5
0
 public UnitOfWork(StudentLoggerContext context)
 {
     this._context = context;
 }
Ejemplo n.º 6
0
 public CourseRepository(StudentLoggerContext studentLoggerContext)
 {
     context = studentLoggerContext;
 }
Ejemplo n.º 7
0
 public StudentRepository(StudentLoggerContext context)
     : base(context)
 {
 }
Ejemplo n.º 8
0
 public EnrolledInsController(StudentLoggerContext context)
 {
     _context = context;
 }
Ejemplo n.º 9
0
 public ActivityRepository(StudentLoggerContext studentLoggerContext)
 {
     context = studentLoggerContext;
 }
Ejemplo n.º 10
0
 public CoursesController(StudentLoggerContext context)
 {
     _context = context;
 }