Exemple #1
0
 public SqlBrowser(DbClientAsync dbClient)
 {
     this.dbClient = dbClient;
 }
Exemple #2
0
 public OracleBrowser(DbClientAsync dbClient)
 {
     this.dbClient = dbClient;
 }
Exemple #3
0
        public IBrowser Clone(DbClientAsync newDbClient)
        {
            OracleBrowser ob = new OracleBrowser(newDbClient);

            return(ob);
        }
Exemple #4
0
        public IBrowser Clone(DbClientAsync newDbClient)
        {
            SqlBrowser sb = new SqlBrowser(newDbClient);

            return(sb);
        }