2024-01-21 20:43:46 +00:00
|
|
|
namespace Mixonomer;
|
2024-01-18 22:30:34 +00:00
|
|
|
|
|
|
|
public static class Months
|
|
|
|
{
|
|
|
|
public static string ThisMonth() => DateTime.Now.ToString("MMMM yy").ToLowerInvariant();
|
|
|
|
|
|
|
|
public static string LastMonth()
|
|
|
|
{
|
|
|
|
var now = DateTime.Now;
|
|
|
|
var lastMonth = now.AddDays(-now.Day - 1);
|
|
|
|
return lastMonth.ToString("MMMM yy").ToLowerInvariant();
|
|
|
|
}
|
|
|
|
}
|