-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathINumericIdentityValueDataAccessModel.cs
More file actions
29 lines (26 loc) · 1.35 KB
/
INumericIdentityValueDataAccessModel.cs
File metadata and controls
29 lines (26 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// =================================================================================================================================
// Copyright (c) RapidField LLC. Licensed under the MIT License. See LICENSE.txt in the project root for license information.
// =================================================================================================================================
using RapidField.SolidInstruments.Core.Domain;
using System;
namespace RapidField.SolidInstruments.DataAccess
{
/// <summary>
/// Represents an object that models a value data access entity and that is identified primarily by an <see cref="Int64" />
/// value.
/// </summary>
/// <typeparam name="TDomainModel">
/// The type of the domain model to which the data access model is mapped.
/// </typeparam>
public interface INumericIdentityValueDataAccessModel<TDomainModel> : IGlobalIdentityValueDataAccessModel, IValueDataAccessModel<Int64, TDomainModel>
where TDomainModel : class, INumericIdentityValueDomainModel
{
}
/// <summary>
/// Represents an object that models a value data access entity and that is identified primarily by an <see cref="Int64" />
/// value.
/// </summary>
public interface INumericIdentityValueDataAccessModel : INumericIdentityDataAccessModel, IValueDataAccessModel<Int64>
{
}
}