using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cmoss.Util
{
public class DateFunctions
{
///
/// Gets the end of day.
///
/// The date.
///
public static DateTime GetEndOfDay(DateTime date)
{
return new DateTime(date.Ticks - 1);
}
}
}