zs
2024-10-10 ca0e376c388694193fa4e734b8c3aa6571f656c0
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>();
        }
    }
}