Exemplo n.º 1
0
 public DbMgr(IConfiguration config)
 {
     Context = new DbContextTBGP(config["ConnectionStrings:Main"]);
 }
Exemplo n.º 2
0
 public DbMgr(string connectionString)
 {
     Context = new DbContextTBGP(connectionString);
 }
Exemplo n.º 3
0
 public DbMgr(DbContextTBGP context)
 {
     Context = context;
 }