Ejemplo n.º 1
0
 public BaseQueryRepository()
 {
     Db = new HealthDbContext();
 }
Ejemplo n.º 2
0
 public BaseCommandRepository()
 {
     Db = new HealthDbContext();
 }
Ejemplo n.º 3
0
 public AuthRepository()
 {
     _ctx = new ApplicationDbContext();
     _db = new HealthDbContext();
     _userManager = GetUserManager();
 }