-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathIGlobalIdentityDataAccessModel.cs
More file actions
28 lines (25 loc) · 1.31 KB
/
IGlobalIdentityDataAccessModel.cs
File metadata and controls
28 lines (25 loc) · 1.31 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
// =================================================================================================================================
// Copyright (c) RapidField LLC. Licensed under the MIT License. See LICENSE.txt in the project root for license information.
// =================================================================================================================================
using RapidField.SolidInstruments.Core;
using RapidField.SolidInstruments.Core.Domain;
using System;
namespace RapidField.SolidInstruments.DataAccess
{
/// <summary>
/// Represents an object that models a 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 IGlobalIdentityDataAccessModel<TDomainModel> : IGlobalIdentityDataAccessModel, IDataAccessModel<Guid, TDomainModel>
where TDomainModel : class, IGlobalIdentityDomainModel
{
}
/// <summary>
/// Represents an object that models a data access entity and that is identified primarily by a <see cref="Guid" /> value.
/// </summary>
public interface IGlobalIdentityDataAccessModel : IDataAccessModel<Guid>, IGlobalIdentityModel
{
}
}