using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cmoss.Util
{
public class DateFunctions
{
///
/// Gets the end of week.
///
/// The date.
///
public static DateTime GetEndOfWeek(DateTime date)
{
int dayOfWeek = (int)date.DayOfWeek;
return new DateTime(new DateTime(date.Year, date.Month, date.Day + (7 - dayOfWeek)).Ticks - 1);
}
}
}