Table of Contents

Interface ICommandHandler<TCommand>

Namespace
BytLabs.Application.CQS.Commands
Assembly
BytLabs.Application.dll

Represents a handler for commands that do not return a response. Implements IRequestHandler from MediatR for command processing.

public interface ICommandHandler<in TCommand> : IRequestHandler<TCommand> where TCommand : ICommand

Type Parameters

TCommand

The type of command to handle

Inherited Members