summaryrefslogtreecommitdiff
path: root/src/app/Cmpp298.Assignment3.Domain/AmountEntrySpecification.cs
blob: d7bfe188f16d6433a2610cc8c7a2493dfc5ffb15 (plain)
1
2
3
4
5
6
7
8
9
using System.Text.RegularExpressions;

namespace Cmpp298.Assignment3.Domain {
	public class AmountEntrySpecification : ISpecification< string > {
		public bool IsSatisfiedBy( string input ) {
			return Regex.IsMatch( input, @"(^\d*\.?\d*[0-9]+\d*$)|(^[0-9]+\d*\.\d*$)" );
		}
	}
}