Line data Source code
1 : #region Copyright
2 : // // -----------------------------------------------------------------------
3 : // // <copyright company="Chinchilla Software Limited">
4 : // // Copyright Chinchilla Software Limited. All rights reserved.
5 : // // </copyright>
6 : // // -----------------------------------------------------------------------
7 : #endregion
8 :
9 : using System;
10 :
11 : namespace Cqrs.Entities
12 : {
13 : /// <summary>
14 : /// A <see cref="Range{TPrimitive}"/> object for collecting a <see cref="DateTime"/> lower and upper limit.
15 : /// </summary>
16 : public class DateRange : Range<DateTime>
17 1 : {
18 : /// <summary>
19 : /// Instantiates and Initialises a new instance of the <see cref="DateRange"/> class.
20 : /// </summary>
21 1 : public DateRange()
22 : {
23 : IsFromInclusive = true;
24 : IsToInclusive = true;
25 : }
26 : }
27 : }
|