32 lines
595 B
C#
32 lines
595 B
C#
using AutoMapper;
|
|
using AutoMapper.EquivalencyExpression;
|
|
using IRaCIS.Application.Contracts;
|
|
using IRaCIS.Core.Application.Contracts;
|
|
using IRaCIS.Core.Application.Contracts.DTO;
|
|
using IRaCIS.Core.Application.Service.Inspection.DTO;
|
|
using IRaCIS.Core.Application.ViewModel;
|
|
using IRaCIS.Core.Domain.Models;
|
|
using IRaCIS.Core.Domain.Share;
|
|
|
|
namespace IRaCIS.Core.Application.Service
|
|
{
|
|
public class InspectionConfig : Profile
|
|
{
|
|
public InspectionConfig()
|
|
{
|
|
|
|
|
|
|
|
CreateMap<DataInspectionAddDTO, DataInspection>();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|
|
|
|
}
|