Example #1
0
 public UserService(IOmegaTicketContext context)
 {
     _context = context;
 }
Example #2
0
 public AuthService(IOptions <AppSettings> appSettings, IOmegaTicketContext context, TokenValidationParameters tokenValidationParameters)
 {
     _appSettings = appSettings.Value;
     _context     = context;
     _tokenValidationParameters = tokenValidationParameters;
 }
Example #3
0
 public ProfileService(IOmegaTicketContext context)
 {
     _context = context;
 }
 public RefreshTokenService(IOmegaTicketContext context)
 {
     _context = context;
 }