refactor(core,domain): Переименованы shared dto

This commit is contained in:
Mikhail Trubnikov
2026-07-24 13:35:56 +10:00
parent 90e9f80505
commit eacda75649
8 changed files with 18 additions and 18 deletions

View File

@@ -4,11 +4,11 @@ using PARR.Domain.Entities.RobotEntities;
namespace PARR.Core.Infrastructure.Mapping.Shared
{
public class RobotDtoMappingProfile : Profile
public class RobotResultMappingProfile : Profile
{
public RobotDtoMappingProfile()
public RobotResultMappingProfile()
{
CreateMap<Robot, RobotDto>();
CreateMap<Robot, RobotResult>();
}
}
}

View File

@@ -4,11 +4,11 @@ using PARR.Domain.Entities.RobotEntities;
namespace PARR.Core.Infrastructure.Mapping.Shared
{
public class RobotStatusDtoMappingProfile : Profile
public class RobotStatusResultMappingProfile : Profile
{
public RobotStatusDtoMappingProfile()
public RobotStatusResultMappingProfile()
{
CreateMap<RobotStatus, RobotStatusDto>();
CreateMap<RobotStatus, RobotStatusResult>();
}
}
}

View File

@@ -3,11 +3,11 @@ using PARR.Domain.DTOs.Shared;
namespace PARR.Core.Infrastructure.Mapping.Shared
{
public class RobotTaskStatusDtoMappingProfile : Profile
public class RobotTaskStatusResultMappingProfile : Profile
{
public RobotTaskStatusDtoMappingProfile()
public RobotTaskStatusResultMappingProfile()
{
CreateMap<PARR.Domain.Entities.RobotEntities.TaskStatus, RobotTaskStatusDto>();
CreateMap<PARR.Domain.Entities.RobotEntities.TaskStatus, RobotTaskStatusResult>();
}
}
}