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