Fixed controller middleware interfaces not inheriting from base

This commit is contained in:
Mark van Renswoude 2020-07-02 11:43:24 +02:00
parent 021d9746e2
commit e5882b7b7a
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ namespace Tapeti.Config
/// <summary>
/// Denotes middleware that runs after controller methods.
/// </summary>
public interface IControllerCleanupMiddleware
public interface IControllerCleanupMiddleware : IControllerMiddlewareBase
{
/// <summary>
/// Called after the message handler method, even if exceptions occured.

View File

@ -6,7 +6,7 @@ namespace Tapeti.Config
/// <summary>
/// Denotes middleware that runs for controller methods.
/// </summary>
public interface IControllerMessageMiddleware
public interface IControllerMessageMiddleware : IControllerMiddlewareBase
{
/// <summary>
/// Called after the message has passed any filter middleware and the controller has been instantiated,