public EvaluacionsController(TFG_BackContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public CursosController(TFG_BackContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public ProfesorsController(TFG_BackContext context)
 {
     _context = context;
 }
Esempio n. 4
0
 public AsignaturasController(TFG_BackContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
        //private readonly IJwtAuthenticationService _authService;

        public UsersController(TFG_BackContext context, IMapper mapper)
        {
            _context = context;
            _mapper  = mapper;
            //_authService = authService;
        }
Esempio n. 6
0
 public MessagesController(TFG_BackContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Esempio n. 7
0
 public TutorsController(TFG_BackContext context)
 {
     _context = context;
 }