Ejemplo n.º 1
0
 public BaseController()
 {
     db = new uPlayAgainContext();
     _log = LogManager.GetLogger("uPlayAgain");
     _repo = new AuthRepository();
     _userManager = new ApplicationUserManager(new UserStore<User>(db));
 }
Ejemplo n.º 2
0
 public AuthRepository()
 {
     _ctx = new uPlayAgainContext();
     _userManager = new ApplicationUserManager(new UserStore<User>(_ctx));
 }
 public GamesImporterController()
 {
     db = new uPlayAgainContext();
 }