public DateExact(int Day, Month Month, YearGregorian Year, Reporting Reporting) : base(Reporting) { this.Day = Day; this.Month = Month; this.Year = Year; }
public DateGregorian(Month Month, YearGregorian Year, Reporting Reporting) : this(0, Month, Year, Reporting) { }
public DateGregorian(YearGregorian Year, Reporting Reporting) : this(Month.Unknown, Year, Reporting) { }