irc-netcore-api/IRaCIS.Core.Application/Service/Inspection/_MapConfig.cs

28 lines
412 B
C#

using AutoMapper;
using IRaCIS.Core.Application.Service.Inspection.DTO;
using IRaCIS.Core.Application.ViewModel;
namespace IRaCIS.Core.Application.Service
{
public class InspectionConfig : Profile
{
public InspectionConfig()
{
CreateMap<DataInspectionAddDTO, DataInspection>();
CreateMap<FrontAuditConfig, FrontAuditConfigDTO>();
}
}
}