Skip to content

1.1.2

Compare
Choose a tag to compare
@osoykan osoykan released this 29 Sep 06:25
d6490ad

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.