SpsMapper.cs 436 B

1234567891011121314151617181920
  1. using AutoMapper;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Ips.Sps.Mappers
  8. {
  9. public static class SpsMapper
  10. {
  11. public static IMapper Default;
  12. static SpsMapper()
  13. {
  14. var config = new MapperConfiguration(cfg => cfg.AddProfile<SpsMapProfile>());
  15. Default = config.CreateMapper();
  16. }
  17. }
  18. }