Exemplo n.º 1
0
 public RouletteManager()
 {
     this._ctx = new GPDbContext();
 }
Exemplo n.º 2
0
 public AccountAdminRepository(GPDbContext context)
 {
     _context = context;
 }
Exemplo n.º 3
0
 public UserRepository(GPDbContext context)
 {
     _context = context;
 }
Exemplo n.º 4
0
 public AccountUserRepository(GPDbContext context)
 {
     _context = context;
 }
Exemplo n.º 5
0
        public IActionResult Get()
        {
            var context = new GPDbContext();

            return(Ok(context.Users.ToList()));
        }
Exemplo n.º 6
0
 public AdminManager()
 {
     this._ctx = new GPDbContext();
 }
Exemplo n.º 7
0
 public LogService(GPDbContext context)
 {
     _context = context;
 }
Exemplo n.º 8
0
 public RoleRepository(GPDbContext context)
 {
     _context = context;
 }
Exemplo n.º 9
0
 public AccountTypeRepository(GPDbContext context)
 {
     _context = context;
 }
Exemplo n.º 10
0
 public GateRepository(GPDbContext context)
 {
     _context = context;
 }
Exemplo n.º 11
0
 public UserManager()
 {
     this._ctx = new GPDbContext();
 }