aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Modules/Tango.PPC.BugReporting/App.xaml
blob: b6c322d9584e4a71a65db389f571e1d8ae3be40a (plain)
1
2
3
4
5
6
7
8
9
10
11
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Controls;


namespace Tango.MachineStudio.Statistics.ValidationRules
{
    public class DateExpiredRule : ValidationRule
    {
        public override ValidationResult Validate(object value, CultureInfo cultureInfo)
        {
            DateTime orderDate = (DateTime)value;

            return new ValidationResult(orderDate < DateTime.Now, "Please enter a date until today.");
        }
    }
}