This commit is contained in:
TheXamlGuy
2024-06-05 19:18:17 +01:00
parent b7fec9c83c
commit 29509e9d7a
16 changed files with 51 additions and 85 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
public class HandlerWrapper<TRequest, TResponse>(IHandler<TRequest, TResponse> handler,
IEnumerable<IPipelineBehaviour<TRequest, TResponse>> pipelineBehaviours)
where TRequest : class
where TRequest : notnull
{
private readonly IEnumerable<IPipelineBehaviour<TRequest, TResponse>> pipelineBehaviours =
pipelineBehaviours.Reverse();