using System; namespace Ant.ORM { public static class DbFunctions { public static int? DiffYears(DateTime? dateTime1, DateTime? dateTime2) { throw new NotSupportedException(); } public static int? DiffMonths(DateTime? dateTime1, DateTime? dateTime2) { throw new NotSupportedException(); } public static int? DiffDays(DateTime? dateTime1, DateTime? ddateTime2) { throw new NotSupportedException(); } public static int? DiffHours(DateTime? dateTime1, DateTime? dateTime2) { throw new NotSupportedException(); } public static int? DiffMinutes(DateTime? dateTime1, DateTime? dateTime2) { throw new NotSupportedException(); } public static int? DiffSeconds(DateTime? dateTime1, DateTime? dateTime2) { throw new NotSupportedException(); } public static int? DiffMilliseconds(DateTime? dateTime1, DateTime? dateTime2) { throw new NotSupportedException(); } public static int? DiffMicroseconds(DateTime? dateTime1, DateTime? dateTime2) { throw new NotSupportedException(); } } }