123456789101112131415161718 |
- 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 MachineOutPutPerHourProfile : Profile
- {
- public MachineOutPutPerHourProfile()
- {
- CreateMap<MachineOutPutPerHour, MachineOutPutPerHourDto>();
- CreateMap<MachineOutPutPerHourDto, MachineOutPutPerHourAlarmDto>();
- }
- }
- }
|