SpsMapProfile.cs 390 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using AutoMapper;
  7. using Ips.Sps.TskResults.Peses;
  8. using Ips.Sps.Tsks;
  9. using Ips.Sps.TskStrategys;
  10. namespace Ips.Sps.Mappers
  11. {
  12. public class SpsMapProfile : Profile
  13. {
  14. public SpsMapProfile()
  15. {
  16. CreateMap<Pes, PesRef>();
  17. }
  18. }
  19. }