-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathIFindDataAccessModelByIdentifierCommand.cs
More file actions
23 lines (21 loc) · 1.14 KB
/
IFindDataAccessModelByIdentifierCommand.cs
File metadata and controls
23 lines (21 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// =================================================================================================================================
// Copyright (c) RapidField LLC. Licensed under the MIT License. See LICENSE.txt in the project root for license information.
// =================================================================================================================================
using System;
namespace RapidField.SolidInstruments.DataAccess
{
/// <summary>
/// Represents a command to find a data access model by its identifier.
/// </summary>
/// <typeparam name="TIdentifier">
/// The type of the unique primary identifier for the data access model.
/// </typeparam>
/// <typeparam name="TDataAccessModel">
/// The type of the associated data access model.
/// </typeparam>
public interface IFindDataAccessModelByIdentifierCommand<TIdentifier, TDataAccessModel> : IDataAccessModelCommand<TIdentifier, TDataAccessModel, TDataAccessModel>
where TIdentifier : IComparable, IComparable<TIdentifier>, IEquatable<TIdentifier>
where TDataAccessModel : class, IDataAccessModel<TIdentifier>
{
}
}