Refactor namespaces for DTO classes
Updated `DtoMappingProfile` and `RecActionDto` to use the `ReC.Application.Common.Dto` namespace instead of `ReC.Application.Dto`. Adjusted `ReadRecActionQuery` to reflect this namespace change. No functional changes were introduced.
This commit is contained in:
parent
3e9edcd8af
commit
5e4f113145
@ -1,7 +1,7 @@
|
|||||||
using AutoMapper;
|
using AutoMapper;
|
||||||
using ReC.Domain.Entities;
|
using ReC.Domain.Entities;
|
||||||
|
|
||||||
namespace ReC.Application.Dto;
|
namespace ReC.Application.Common.Dto;
|
||||||
|
|
||||||
public class DtoMappingProfile : Profile
|
public class DtoMappingProfile : Profile
|
||||||
{
|
{
|
||||||
@ -1,4 +1,4 @@
|
|||||||
namespace ReC.Application.Dto;
|
namespace ReC.Application.Common.Dto;
|
||||||
|
|
||||||
public class RecActionDto
|
public class RecActionDto
|
||||||
{
|
{
|
||||||
@ -1,10 +1,10 @@
|
|||||||
using MediatR;
|
using MediatR;
|
||||||
using ReC.Application.Dto;
|
|
||||||
using DigitalData.Core.Abstraction.Application.Repository;
|
using DigitalData.Core.Abstraction.Application.Repository;
|
||||||
using ReC.Domain.Entities;
|
using ReC.Domain.Entities;
|
||||||
using AutoMapper;
|
using AutoMapper;
|
||||||
using Microsoft.EntityFrameworkCore;
|
using Microsoft.EntityFrameworkCore;
|
||||||
using DigitalData.Core.Exceptions;
|
using DigitalData.Core.Exceptions;
|
||||||
|
using ReC.Application.Common.Dto;
|
||||||
|
|
||||||
namespace ReC.Application.RecActions.Queries;
|
namespace ReC.Application.RecActions.Queries;
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user