Refactor namespaces for DEX job behaviors

Updated namespaces for `CheckQueryExecutionBehavior`,
`MainQueryExecutionBehavior`, and `ReCRequestExecutionBehavior`
from `ECMJobRunner.Application.Behaviors` to
`ECMJobRunner.Application.DEXJob.Commands.Behaviors` to better
align with the `DEXJob.Commands` context.

Updated `DependencyInjection.cs` and test files to reference the
new namespace. Added `using Microsoft.Extensions.Options;` to
support the Options pattern in the updated files.
This commit is contained in:
2026-08-03 11:17:27 +02:00
parent afdeb8839c
commit a698f8daae
6 changed files with 6 additions and 6 deletions

View File

@@ -1,4 +1,4 @@
using ECMJobRunner.Application.Behaviors;
using ECMJobRunner.Application.DEXJob.Commands.Behaviors;
using MediatR;
using Microsoft.Extensions.DependencyInjection;
using ReC.Client;