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