Exemple #1
0
 public BaseDAO(string tableName, SQLManager manager)
 {
     TableName = tableName;
     Manager   = manager;
 }
Exemple #2
0
 public BaseDAO(string tableName)
 {
     TableName = tableName;
     Manager   = new SQLManager();
 }