summary refs log tree commit diff
path: root/customer_maintenance/CustomerMaintenance/Validator.cs
blob: ddc01b67cf6cbe04e2949a4eb3e2b9545e487cf0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
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;
		}
	}
}