Interface ICommandAuditorFactory
Implementations of this interface create auditors for given types of command
Namespace: AzureFromTheTrenches.Commanding.Abstractions
Assembly: AzureFromTheTrenches.Commanding.Abstractions.dll
Syntax
public interface ICommandAuditorFactory
Methods
| Improve this Doc View SourceCreate<TCommand>()
Create an auditor
Declaration
ICommandAuditor Create<TCommand>()
where TCommand : class
Returns
Type | Description |
---|---|
ICommandAuditor | The auditor |
Type Parameters
Name | Description |
---|---|
TCommand | The command type associated with the auditor |