refactor(ResultView): move to Views directory

This commit is contained in:
2026-01-12 10:34:27 +01:00
parent 88c6e6d214
commit 284ced6059
4 changed files with 5 additions and 5 deletions

View File

@@ -1,7 +1,7 @@
using DigitalData.Core.Abstraction.Application.Repository;
using MediatR;
using ReC.Application.Common.Interfaces;
using ReC.Domain.Entities;
using ReC.Domain.Views;
using System.Text.Json.Serialization;
namespace ReC.Application.ResultViews.Commands;

View File

@@ -1,5 +1,5 @@
using ReC.Application.ResultViews.Commands;
using ReC.Domain.Entities;
using ReC.Domain.Views;
namespace ReC.Application.ResultViews;

View File

@@ -4,7 +4,7 @@ using DigitalData.Core.Exceptions;
using MediatR;
using Microsoft.EntityFrameworkCore;
using ReC.Application.Common.Dto;
using ReC.Domain.Entities;
using ReC.Domain.Views;
using System.Text.Json;
namespace ReC.Application.ResultViews.Queries;

View File

@@ -1,7 +1,7 @@
using ReC.Domain.Views;
using ReC.Domain.Entities;
using System.ComponentModel.DataAnnotations.Schema;
namespace ReC.Domain.Entities;
namespace ReC.Domain.Views;
[Table("VWREC_RESULT", Schema = "dbo")]
public class ResultView