Beispiel #1
0
            public static string UpdateShutdownTimeSQL(int delaySeconds)
            {
                String str   = ConvertSecondsToString(delaySeconds);
                Regex  regex = new Regex(@"^'(.+)'$"); if (!regex.IsMatch(str))

                {
                    str = "\'" + str + "\'";
                }
                return(SqlExecuter.UpdateShutdownTimeSQL(str));
            }
Beispiel #2
0
 public static string UpdateShutdownTimeSQL() => SqlExecuter.UpdateShutdownTimeSQL();