Add BodyQueryBehavior and register in MediatR pipeline

Introduced the `BodyQueryBehavior<TRecAction>` class, which implements the `IPipelineBehavior` interface to handle actions of type `RecActionDto`. The behavior is currently unimplemented and throws a `NotImplementedException`.

Updated the `DependencyInjection` class to register `BodyQueryBehavior<>` as an open generic pipeline behavior in MediatR. Added necessary `using` directives in both `DependencyInjection.cs` and `BodyQueryBehavior.cs` to support the new behavior.
This commit is contained in:
tekh 2025-11-27 15:46:07 +01:00
parent b1df50bc32
commit 1757c0e055
2 changed files with 17 additions and 0 deletions

View File

@ -1,6 +1,7 @@
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using ReC.Application.Common.Options;
using ReC.Application.RecActions.Behaviors;
using System.Reflection;
namespace ReC.Application;
@ -25,6 +26,7 @@ public static class DependencyInjection
services.AddMediatR(cfg =>
{
cfg.RegisterServicesFromAssembly(Assembly.GetExecutingAssembly());
cfg.AddOpenBehaviors([typeof(BodyQueryBehavior<>)]);
cfg.LicenseKey = configOpt.LuckyPennySoftwareLicenseKey;
});

View File

@ -0,0 +1,15 @@
using MediatR;
using ReC.Application.Common.Dto;
namespace ReC.Application.RecActions.Behaviors
{
public class BodyQueryBehavior<TRecAction> : IPipelineBehavior<TRecAction, Unit>
where TRecAction : RecActionDto
{
public Task<Unit> Handle(TRecAction action, RequestHandlerDelegate<Unit> next, CancellationToken cancel)
{
// Logic to process the body query can be added here
throw new NotImplementedException("BodyQueryBehavior is not implemented yet.");
}
}
}