1234567891011121314151617181920 |
- using AutoMapper;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ips.Sps.Mappers
- {
- public static class SpsMapper
- {
- public static IMapper Default;
- static SpsMapper()
- {
- var config = new MapperConfiguration(cfg => cfg.AddProfile<SpsMapProfile>());
- Default = config.CreateMapper();
- }
- }
- }
|