using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cmoss.Util
{
public class DateFunctions
{
///
/// Gets the date.
///
/// The year.
///
public static DateTime GetDate(int year)
{
return new DateTime(year, 1, 1);
}
}
}