using System;
using System.Collections.Generic;
using System.Text;
namespace Nucleo
{
public static class DateTimeUtility
{
///
/// Converts the date to start from midnight.
///
/// The date to convert.
/// A converted date.
public static DateTime ConvertToBeginDate(DateTime beginDate)
{
return new DateTime(beginDate.Year, beginDate.Month, beginDate.Day, 0, 0, 0);
}
}
}