ProductionLineProfile.cs 399 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 ProductionLineProfile : Profile
  10. {
  11. public ProductionLineProfile()
  12. {
  13. CreateMap<ProductionLine, ProductionLineDto>();
  14. }
  15. }
  16. }