1.1.2
Enhancements
- The Inheritance for all the handlers and the pipelines is implemented. Now, you can configure a base class for any of them. #27
abstract class CommandHandlerBase<TCommand: Command>: AsyncCommandHandler<TCommand>
class Handler: CommandHandlerBase<CreateCityCommand>
The same applies to QueryHandlers, Pipelines, and Notification handlers.