using AutoMapper; using SimpleLIS.DTO; using SimpleLIS.Models; namespace SimpleLIS; public class MappingProfile : Profile { public MappingProfile() { CreateMap(); CreateMap(); CreateMap(); CreateMap(); CreateMap(); CreateMap(); } }