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

            return(ob);
        }
Esempio n. 4
0
        public IBrowser Clone(DbClientAsync newDbClient)
        {
            SqlBrowser sb = new SqlBrowser(newDbClient);

            return(sb);
        }