Exemplo n.º 1
0
 public SqlFuConnection(DbConnection cnx,DbEngine engine)
 {
     cnx.MustNotBeNull();
     _conex = cnx;
     _provider = ProviderFactory.GetProvider(engine);
     _conex.Open();
 }
Exemplo n.º 2
0
 public SqlFuConnection(DbConnection cnx,IDbProvider provider)
 {
     cnx.MustNotBeNull();
     provider.MustNotBeNull();
     _conex = cnx;
     _provider = provider;
   
 }