public Handler(IPhysicianLookupDbContext context) => _context = context;
 public Handler(IPhysicianLookupDbContext context, ITokenProvider tokenProvider, IPasswordHasher passwordHasher)
 {
     _context        = context;
     _tokenProvider  = tokenProvider;
     _passwordHasher = passwordHasher;
 }
 public Handler(IPhysicianLookupDbContext context, IGoogleMapsService googleMapsService, IConfiguration configuration)
 {
     _context           = context;
     _googleMapsService = googleMapsService;
     _configuration     = configuration;
 }
Esempio n. 4
0
 public Handler(IPhysicianLookupDbContext context, ITokenProvider tokenProvider)
 {
     _context       = context;
     _tokenProvider = tokenProvider;
 }