using AutoMapper; using WingInterfaceLibrary.DTO.Device; using WingInterfaceLibrary.DTO.User; namespace WingDeviceService { public class AutoMapperProfile : Profile { public AutoMapperProfile() { CreateMap().ReverseMap(); CreateMap().ReverseMap(); CreateMap().ReverseMap(); } } }