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

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