namespace utility { using IComparable = System.IComparable; public interface Date: IComparable { int Year { get; set; } int Month { get; set; } int Day { get; set; } bool Equals(object pObject); int GetHashCode(); string ToString(); } }