diff --git a/src/Carter/ICarterModule.cs b/src/Carter/ICarterModule.cs index c558a67..d6b131b 100644 --- a/src/Carter/ICarterModule.cs +++ b/src/Carter/ICarterModule.cs @@ -234,11 +234,13 @@ public CarterModule RequireRateLimiting(string policyName) /// /// An interface to define HTTP routes /// +/// Implementations of should not inject constructor dependencies. All dependencies should be supplied in the route public interface ICarterModule { /// /// Invoked at startup to add routes to the HTTP pipeline /// + /// Implementations of should not inject constructor dependencies. All dependencies should be supplied in the route /// An instance of void AddRoutes(IEndpointRouteBuilder app); }