Move query result classes to QueryOutput namespace

BodyQueryResult and HeaderQueryResult were relocated from ReC.Domain.Entities to ReC.Domain.QueryOutput. Updated all references in IRecDbContext and RecDbContext to use the new namespace.
This commit is contained in:
2026-01-12 14:11:05 +01:00
parent 2d04670fef
commit 92e8d9e778
4 changed files with 4 additions and 2 deletions

View File

@@ -1,5 +1,6 @@
using Microsoft.EntityFrameworkCore;
using ReC.Domain.Entities;
using ReC.Domain.QueryOutput;
using ReC.Domain.Views;
namespace ReC.Application.Common.Interfaces;

View File

@@ -1,4 +1,4 @@
namespace ReC.Domain.Entities;
namespace ReC.Domain.QueryOutput;
public class BodyQueryResult
{

View File

@@ -1,4 +1,4 @@
namespace ReC.Domain.Entities;
namespace ReC.Domain.QueryOutput;
public class HeaderQueryResult
{

View File

@@ -1,6 +1,7 @@
using Microsoft.EntityFrameworkCore;
using ReC.Application.Common.Interfaces;
using ReC.Domain.Entities;
using ReC.Domain.QueryOutput;
using ReC.Domain.Views;
namespace ReC.Infrastructure;