12345678910111213141516171819 |
- using AutoMapper;
- using ProductionLineMonitor.Core.Dtos;
- using ProductionLineMonitor.Core.Models;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace ProductionLineMonitor.Core.Profiles
- {
- public class CimProfile : Profile
- {
- public CimProfile()
- {
- CreateMap<CimDto, Cim>();
- CreateMap<Cim, CimDto>();
- CreateMap<Cim, CimListDto>();
- }
- }
- }
|