public DateTime GetFirstDay()
{
return DateTime.Now.AddDays(1 - DateTime.Now.Day);
}
public DateTime GetLastDay()
{
return GetFirstDay().AddMonths(1).AddDays(-1);
}
public DateTime GetFirstDay()
{
return DateTime.Now.AddDays(1 - DateTime.Now.Day);
}
public DateTime GetLastDay()
{
return GetFirstDay().AddMonths(1).AddDays(-1);
}