public UsersController(IHttpContextAccessor contextAccessor, UserManager <User> userManager, SignInManager <User> signInManager, IMailService mailService, IConfiguration configuration, TestMEApiContext context) { _userManager = userManager; _signInManager = signInManager; _mailService = mailService; _configuration = configuration; _context = context; _contextAccessor = contextAccessor; }
public QuestionsController(TestMEApiContext context) { _context = context; }
public UsersTestsController(TestMEApiContext context) { _context = context; }
public AnswersController(TestMEApiContext context) { _context = context; }