예제 #1
0
 public EvalsController(PPEAPIContext context)
 {
     _context = context;
 }
예제 #2
0
 public AuthRepository(PPEAPIContext context)
 {
     _context = context;
 }
예제 #3
0
 public AdminController(PPEAPIContext context, UserManager <User> userManager)
 {
     _context     = context;
     _userManager = userManager;
 }
예제 #4
0
 public UserRepository(PPEAPIContext context)
 {
     _context = context;
 }
예제 #5
0
 public NotesRepository(PPEAPIContext context) : base(context)
 {
 }
예제 #6
0
 public JurysController(PPEAPIContext context)
 {
     _context = context;
 }
예제 #7
0
 public StudentsController(PPEAPIContext context)
 {
     _context = context;
 }
예제 #8
0
 public CriteresController(PPEAPIContext context)
 {
     _context = context;
 }
예제 #9
0
 public CriteresRepository(PPEAPIContext context) : base(context)
 {
 }
예제 #10
0
 public EvaluationsRepository(PPEAPIContext context) : base(context)
 {
 }