refactor(core,domain): Переименованы shared dto
This commit is contained in:
@@ -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>();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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>();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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>();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user