Files
parr_api/PARR.API/MappingProfiles/RequestToDomainProfile.cs

15 lines
318 B
C#
Raw Normal View History

2023-05-17 16:00:50 +10:00
using AutoMapper;
2023-06-16 15:00:11 +10:00
using PARR.API.Contracts.V1.Requests.Queries;
using PARR.DAL.DomainModels;
2023-05-17 16:00:50 +10:00
2023-05-17 16:30:13 +10:00
namespace PARR.API.MappingProfiles
2023-05-17 16:00:50 +10:00
{
public class RequestToDomainProfile : Profile
{
public RequestToDomainProfile()
{
2023-06-16 15:00:11 +10:00
CreateMap<PaginationQuery, PaginationFilter>();
2023-05-17 16:00:50 +10:00
}
}
}