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.
///
public static DateTime GetDate(int year, int month)
{
return new DateTime(year, month, 1);
}
}
}