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