using System;
using System.Collections.Generic;
using System.Text;
namespace Nucleo
{
public static class DateTimeUtility
{
///
/// Converts the date to end at midnight.
///
/// The date to convert.
/// A converted date.
public static DateTime ConvertToEndDate(DateTime endDate)
{
return new DateTime(endDate.Year, endDate.Month, endDate.Day, 23, 59, 59);
}
}
}