-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathIDataAccessCommand.cs
More file actions
26 lines (23 loc) · 1.02 KB
/
IDataAccessCommand.cs
File metadata and controls
26 lines (23 loc) · 1.02 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
// =================================================================================================================================
// Copyright (c) RapidField LLC. Licensed under the MIT License. See LICENSE.txt in the project root for license information.
// =================================================================================================================================
using RapidField.SolidInstruments.Command;
using RapidField.SolidInstruments.Core;
namespace RapidField.SolidInstruments.DataAccess
{
/// <summary>
/// Represents a data access command.
/// </summary>
public interface IDataAccessCommand : IDataAccessCommand<Nix>, ICommand
{
}
/// <summary>
/// Represents a data access command that emits a result when processed.
/// </summary>
/// <typeparam name="TResult">
/// The type of the result that is produced by handling the data access command.
/// </typeparam>
public interface IDataAccessCommand<out TResult> : ICommand<TResult>
{
}
}