MachineProfile.cs 371 B

1234567891011121314151617
  1. using AutoMapper;
  2. using ProductionLineMonitor.Core.Dtos;
  3. using ProductionLineMonitor.Core.Models;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Text;
  7. namespace ProductionLineMonitor.Core.Profiles
  8. {
  9. public class MachineProfile : Profile
  10. {
  11. public MachineProfile()
  12. {
  13. CreateMap<Machine, MachineDto>();
  14. }
  15. }
  16. }