diff options
author | | 1970-01-01 00:00:00 +0000 |
---|---|---|
committer | | 2025-01-08 04:49:34 +0000 |
commit | c48651e2a37e8af5f1eafff10119eedefa4f96e7 (patch) | |
tree | 6837b96f034a40c00a01b8f5857e7685182cc71b /customer_maintenance/CustomerMaintenance/Validator.cs | |
parent | string handling (diff) | |
download | cs-c48651e2a37e8af5f1eafff10119eedefa4f96e7.tar cs-c48651e2a37e8af5f1eafff10119eedefa4f96e7.tar.gz cs-c48651e2a37e8af5f1eafff10119eedefa4f96e7.tar.bz2 cs-c48651e2a37e8af5f1eafff10119eedefa4f96e7.tar.xz cs-c48651e2a37e8af5f1eafff10119eedefa4f96e7.zip |
customer maintenance
Diffstat (limited to 'customer_maintenance/CustomerMaintenance/Validator.cs')
-rw-r--r-- | customer_maintenance/CustomerMaintenance/Validator.cs | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/customer_maintenance/CustomerMaintenance/Validator.cs b/customer_maintenance/CustomerMaintenance/Validator.cs new file mode 100644 index 0000000..ddc01b6 --- /dev/null +++ b/customer_maintenance/CustomerMaintenance/Validator.cs @@ -0,0 +1,81 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace CustomerMaintenance +{ + public static class Validator + { + private static string lineEnd = "\n"; + + public static string LineEnd + { + get + { + return lineEnd; + } + set + { + lineEnd = value; + } + } + + public static string IsPresent(string value, string name) + { + string msg = ""; + if (value == "") + { + msg += name + " is a required field." + LineEnd; + } + return msg; + } + + public static string IsDecimal(string value, string name) + { + string msg = ""; + if (!Decimal.TryParse(value, out _)) + { + msg += name + " must be a valid decimal value." + LineEnd; + } + return msg; + } + + public static string IsInt32(string value, string name) + { + string msg = ""; + if (!Int32.TryParse(value, out _)) + { + msg += name + " must be a valid integer value." + LineEnd; + } + return msg; + } + + public static string IsWithinRange(string value, string name, decimal min, + decimal max) + { + string msg = ""; + if (Decimal.TryParse(value, out decimal number)) + { + if (number < min || number > max) + { + msg += name + " must be between " + min + " and " + max + "." + LineEnd; + } + } + return msg; + } + + public static string IsValidEmail(string value, string name) + { + string msg = ""; + if (value.IndexOf("@") == -1 || + value.IndexOf(".") == -1) + { + msg += name + " must be a valid email address." + LineEnd; + } + return msg; + } + } +} |