zs
2024-11-21 6e7d363e82b03f7b99271d8e4d516f2d8e427ca3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using AutoMapper;
using DataCapture_MA.Entity;
using DataCapture_MA.Model;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace DataCapture_MA.AutoMapperConfig
{
    public class MapperConfiguration : Profile
    {
        public MapperConfiguration() 
        {
            CreateMap<MessageAnalysis, RobotInfo>();
            CreateMap<MessageAnalysis, EquipmentOtherInfoForMes>();
        }
    }
}