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