zs
2024-11-21 aee9f67e702f6467aa1948777251fa1bf85353ec
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>();
        }
    }
}