-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathISemanticIdentityAggregateDataAccessModel.cs
More file actions
29 lines (26 loc) · 1.39 KB
/
ISemanticIdentityAggregateDataAccessModel.cs
File metadata and controls
29 lines (26 loc) · 1.39 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 an aggregate 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 ISemanticIdentityAggregateDataAccessModel<TDomainModel> : ISemanticIdentityAggregateDataAccessModel, IAggregateDataAccessModel<String, TDomainModel>
where TDomainModel : class, ISemanticIdentityAggregateDomainModel
{
}
/// <summary>
/// Represents an object that models an aggregate data access entity and that is identified primarily by a <see cref="String" />
/// value.
/// </summary>
public interface ISemanticIdentityAggregateDataAccessModel : ISemanticIdentityDataAccessModel, IAggregateDataAccessModel<String>
{
}
}