public BasicAuthenticationHandler(IOptionsMonitor <AuthenticationSchemeOptions> options,
                                   ILoggerFactory logger,
                                   UrlEncoder encoder,
                                   ISystemClock clock,
                                   IUserService userService, eDentalClinicContext context) : base(options, logger, encoder, clock)
 {
     _userService = userService;
     _context     = context;
 }
Example #2
0
 public GenderService(eDentalClinicContext context, IMapper mapper) : base(context, mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Example #3
0
 public TreatmentService(eDentalClinicContext context, IMapper mapper) : base(context, mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Example #4
0
 public NotificationService(eDentalClinicContext context, IMapper mapper) : base(context, mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public UserService(eDentalClinicContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public RecommendationService(eDentalClinicContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public UserRoleService(eDentalClinicContext context, IMapper mapper) : base(context, mapper)
 {
     _context = context;
     _mapper  = mapper;
 }