using AutoMapper; using PARR.API.Contracts.V1.Requests.Queries; using PARR.DAL.DomainModels; namespace PARR.API.MappingProfiles { public class RequestToDomainProfile : Profile { public RequestToDomainProfile() { CreateMap(); } } }