using System; using System.Collections.Generic; using System.Collections.Specialized; using System.Linq; using System.Text; using System.Web; namespace Neo.LegitimateLicences.Common.Helpers { public static class DateHelper { #region FirstDayOfMonth public static DateTime FirstDayOfMonth { get { return new DateTime(DateTime.Now.Year, DateTime.Now.Month, 1); } } #endregion #region LastDayOfMonth public static DateTime LastDayOfMonth { get { return FirstDayOfMonth.AddMonths(1).AddDays(-1); } } #endregion } }