Example #1
0
 public ValuesController(MojaApkaContext context, IStudentService studentService)
 {
     _studentService = studentService;
     _context        = context;
 }
Example #2
0
 public UsersController(MojaApkaContext context)
 {
     _context = context;
 }
Example #3
0
 public StudentRepository(MojaApkaContext context)
 {
     _context = context;
 }