14 lines
308 B
C#
14 lines
308 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace MileageTraker.Web.Utility
|
|
{
|
|
public class DenyFutureDateAttribute : ValidationAttribute
|
|
{
|
|
public override bool IsValid(object value)
|
|
{
|
|
var date = DateTime.Parse(value.ToString());
|
|
return date.Date <= DateTime.Today;
|
|
}
|
|
}
|
|
} |