Scans assemblies and adds handlers implementations to the container. To use, with an IServiceCollection
instance:
services.AddMediatR(typeof(MyHander));
or with an assembly:
services.AddMediatR(typeof(Startup).GetTypeInfo().Assembly);
Supports generic variance of handlers.