예제 #1
0
 public JwtProvider(
     IOptions<JwtOptions> jwtOptions,
     IRefreshTokenProvider refreshTokenProvider,
     UserManager<User> userManager, VisitWrocloveWebContext context)
 {
     _jwtOptions = jwtOptions.Value;
     _refreshTokenProvider = refreshTokenProvider;
     _userManager = userManager;
     //ThrowIfInvalidOptions(_jwtOptions);
 }
예제 #2
0
 public SavedRoutesController(VisitWrocloveWebContext context)
 {
     _context = context;
 }
예제 #3
0
 public AddressesController(VisitWrocloveWebContext context)
 {
     _context = context;
 }
 public RoutePointsController(VisitWrocloveWebContext context)
 {
     _context = context;
 }
예제 #5
0
 public EventsController(VisitWrocloveWebContext context)
 {
     _context = context;
 }
예제 #6
0
 public PremiumPaymentsController(VisitWrocloveWebContext context)
 {
     _context = context;
 }
예제 #7
0
 public PaymentsController(VisitWrocloveWebContext context, IPaymentsResolver resolver)
 {
     _context  = context;
     _resolver = resolver;
 }
예제 #8
0
 public PasswordProvider(VisitWrocloveWebContext context, UserManager <User> userManager)
 {
     _context     = context;
     _userManager = userManager;
 }
 public ReviewsController(VisitWrocloveWebContext context)
 {
     _context = context;
 }
예제 #10
0
 public RefreshTokenProvider(IInfrastructureConfig refreshTokenConfig, VisitWrocloveWebContext context)
 {
     _refreshTokenConfig = refreshTokenConfig;
     _context            = context;
 }
 public UsersController(VisitWrocloveWebContext context)
 {
     _context = context;
 }
예제 #12
0
 public FavoritesController(VisitWrocloveWebContext context)
 {
     _context = context;
 }
예제 #13
0
 public PlacesController(VisitWrocloveWebContext context)
 {
     _context = context;
 }
예제 #14
0
 public UsersController(VisitWrocloveWebContext context, IAuthService authService)
 {
     _context     = context;
     _authService = authService;
 }