Example #1
0
 public UserController(backendContext context)
 {
     _context = context;
 }
 public RegistrationService(backendContext context)
 {
     _context = context;
 }
Example #3
0
 public UserService(backendContext context)
 {
     _context = context;
 }
 public AccountController(backendContext db, IConfiguration configuration)
 {
     _config = configuration;
     _db     = db;
 }
 public AuthenticateController(backendContext context)
 {
     _context = context;
 }
Example #6
0
 public EventsController(backendContext context)
 {
     _context = context;
 }
Example #7
0
 public RegistrationsController(backendContext context)
 {
     _context = context;
 }