Example #1
0
 public TokenProviderMiddleware(RequestDelegate next,
                                IOptions <TokenProvider> options, SharingIsCaringContext context)
 {
     _next     = next;
     _options  = options.Value;
     dbContext = context;
 }
Example #2
0
 public TripController(SharingIsCaringContext context)
 {
     this.context = context;
 }
Example #3
0
 public UserController(SharingIsCaringContext context)
 {
     this.context = context;
 }