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 : namespace Cqrs.Entities
10 : {
11 : /// <summary>
12 : /// A <see cref="Range{TPrimitive}"/> object for collecting a <see cref="decimal"/> lower and upper limit.
13 : /// </summary>
14 : public class DecimalRange : Range<decimal>
15 1 : {
16 : /// <summary>
17 : /// Instantiates and Initialises a new instance of the <see cref="DecimalRange"/> class.
18 : /// </summary>
19 1 : public DecimalRange()
20 : {
21 : IsFromInclusive = true;
22 : IsToInclusive = true;
23 : }
24 : }
25 : }
|