-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathIDataAccessCommandHandlerModule.cs
More file actions
42 lines (38 loc) · 1.9 KB
/
IDataAccessCommandHandlerModule.cs
File metadata and controls
42 lines (38 loc) · 1.9 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
30
31
32
33
34
35
36
37
38
39
40
41
42
// =================================================================================================================================
// Copyright (c) RapidField LLC. Licensed under the MIT License. See LICENSE.txt in the project root for license information.
// =================================================================================================================================
using RapidField.SolidInstruments.Command;
namespace RapidField.SolidInstruments.DataAccess
{
/// <summary>
/// Encapsulates container configuration for data access command handlers.
/// </summary>
/// <typeparam name="TConfigurator">
/// The type of the object that configures containers.
/// </typeparam>
/// <typeparam name="TBaseDataAccessCommandHandler">
/// The base class or implemented interface type that is shared by all data access command handler types that are registered by
/// the module.
/// </typeparam>
public interface IDataAccessCommandHandlerModule<TConfigurator, TBaseDataAccessCommandHandler> : ICommandHandlerModule<TConfigurator, TBaseDataAccessCommandHandler>, IDataAccessCommandHandlerModule<TConfigurator>
where TConfigurator : class, new()
where TBaseDataAccessCommandHandler : IDataAccessCommandHandler
{
}
/// <summary>
/// Encapsulates container configuration for data access command handlers.
/// </summary>
/// <typeparam name="TConfigurator">
/// The type of the object that configures containers.
/// </typeparam>
public interface IDataAccessCommandHandlerModule<TConfigurator> : ICommandHandlerModule<TConfigurator>, IDataAccessCommandHandlerModule
where TConfigurator : class, new()
{
}
/// <summary>
/// Encapsulates container configuration for data access command handlers.
/// </summary>
public interface IDataAccessCommandHandlerModule : ICommandHandlerModule
{
}
}