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