refactor(RecActionView): move to Views directory

This commit is contained in:
2026-01-12 10:33:59 +01:00
parent 6263848a0a
commit 88c6e6d214
7 changed files with 9 additions and 4 deletions

View File

@@ -1,4 +1,5 @@
using ReC.Domain.Entities;
using ReC.Domain.Views;
namespace ReC.Application.Common.Dto;

View File

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

View File

@@ -1,10 +1,10 @@
using MediatR;
using DigitalData.Core.Abstraction.Application.Repository;
using ReC.Domain.Entities;
using AutoMapper;
using Microsoft.EntityFrameworkCore;
using DigitalData.Core.Exceptions;
using ReC.Application.Common.Dto;
using ReC.Domain.Views;
namespace ReC.Application.RecActionViews.Queries;

View File

@@ -1,4 +1,5 @@
using System.ComponentModel.DataAnnotations.Schema;
using ReC.Domain.Views;
using System.ComponentModel.DataAnnotations.Schema;
namespace ReC.Domain.Entities;

View File

@@ -1,7 +1,8 @@
using ReC.Domain.Constants;
using ReC.Domain.Entities;
using System.ComponentModel.DataAnnotations.Schema;
namespace ReC.Domain.Entities;
namespace ReC.Domain.Views;
/// <summary>
/// Represents the VWREC_ACTION view from the database.

View File

@@ -4,7 +4,7 @@ using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.DependencyInjection;
using ReC.Application.Common.Interfaces;
using ReC.Application.Common.Validations;
using ReC.Domain.Entities;
using ReC.Domain.Views;
namespace ReC.Infrastructure;

View File

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