-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathIGlobalIdentityValueDataAccessModel.cs
More file actions
27 lines (24 loc) · 1.32 KB
/
IGlobalIdentityValueDataAccessModel.cs
File metadata and controls
27 lines (24 loc) · 1.32 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
// =================================================================================================================================
// 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 a <see cref="Guid" /> value.
/// </summary>
/// <typeparam name="TDomainModel">
/// The type of the domain model to which the data access model is mapped.
/// </typeparam>
public interface IGlobalIdentityValueDataAccessModel<TDomainModel> : IGlobalIdentityValueDataAccessModel, IValueDataAccessModel<Guid, TDomainModel>
where TDomainModel : class, IGlobalIdentityValueDomainModel
{
}
/// <summary>
/// Represents an object that models a value data access entity and that is identified primarily by a <see cref="Guid" /> value.
/// </summary>
public interface IGlobalIdentityValueDataAccessModel : IGlobalIdentityDataAccessModel, IValueDataAccessModel<Guid>
{
}
}