28 lines
		
	
	
		
			412 B
		
	
	
	
		
			C#
		
	
	
			
		
		
	
	
			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>();
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
}
 |