using AutoMapper; using TOOHUCardAPI.Data.Models; using TOOHUCardAPI.DTO; namespace TOOHUCardAPI.Data { public class AutomapProfile : Profile { public AutomapProfile() { CreateMap(); CreateMap(); } } }