When a request comes in to your ASP.NET site, it's routed through a series of message handlers (in ASP.NET Web API) or modules (in ASP.NET MVC), each of which performs some operation on the request.
Take advantage of MediatR and the mediator design pattern to reduce the dependencies between objects in your ASP.Net Core applications MediatR is an open source project and an implementation of the ...