public LoginModel(SignInManager <IdentityUser> signInManager,
                   ILogger <LoginModel> logger,
                   UserManager <IdentityUser> userManager,
                   MedicalOfficeContext context)
 {
     _userManager   = userManager;
     _signInManager = signInManager;
     _logger        = logger;
     _context       = context;
 }
Example #2
0
 public SpecialtiesController(MedicalOfficeContext context)
 {
     _context = context;
 }
 public DoctorsController(MedicalOfficeContext context)
 {
     _context = context;
 }
Example #4
0
 public PatientApptController(MedicalOfficeContext context)
 {
     _context = context;
 }
 public ApptReasonsController(MedicalOfficeContext context)
 {
     _context = context;
 }
Example #6
0
 public LookupsController(MedicalOfficeContext context)
 {
     _context = context;
 }
 public MedicalTrialsController(MedicalOfficeContext context, IMyEmailSender emailSender)
 {
     _context     = context;
     _emailSender = emailSender;
 }
 public EmployeeAccountController(MedicalOfficeContext context)
 {
     _context = context;
 }
 public EmployeesController(MedicalOfficeContext context, ApplicationDbContext identityContext)
 {
     _context         = context;
     _identityContext = identityContext;
 }
Example #10
0
 public ConditionsController(MedicalOfficeContext context)
 {
     _context = context;
 }
Example #11
0
 public AppointmentsController(MedicalOfficeContext context)
 {
     _context = context;
 }