1
0
mirror of https://github.com/ncblakely/GiantsTools synced 2024-07-01 10:11:44 +02:00
GiantsTools/Giants.Services/Mapper/Mapper.cs
2020-08-08 00:07:11 -07:00

34 lines
990 B
C#

namespace Giants.Services
{
using AutoMapper;
public static class Mapper
{
public static IMapper Instance { get; private set; }
private static readonly object LockObject = new object();
public static IMapper GetMapper()
{
if (Instance == null)
{
lock(LockObject)
{
if (Instance == null)
{
var config = new MapperConfiguration(cfg => {
cfg.CreateMap<DataContract.ServerInfo, Services.ServerInfo>();
cfg.CreateMap<Services.ServerInfo, DataContract.ServerInfo>();
cfg.CreateMap<Services.ServerInfo, DataContract.ServerInfoWithHostAddress>();
});
Instance = new AutoMapper.Mapper(config);
}
}
}
return Instance;
}
}
}