Exemplo n.º 1
0
 public static string GetTotal(eTables tableName)
 {
     return($"SELECT COUNT(*) FROM {tableName.ToString()};");
 }
Exemplo n.º 2
0
 public static string GetAllFrom(eTables tableName)
 {
     return($"SELECT * FROM {tableName.ToString()};");
 }