Esempio n. 1
0
 public BaseDAO(string tableName, SQLManager manager)
 {
     TableName = tableName;
     Manager   = manager;
 }
Esempio n. 2
0
 public BaseDAO(string tableName)
 {
     TableName = tableName;
     Manager   = new SQLManager();
 }