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