This commit is contained in:
15
HanyadikHetVan/Profiles/FunFactProfile.cs
Normal file
15
HanyadikHetVan/Profiles/FunFactProfile.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using AutoMapper;
|
||||
using HanyadikHetVan.Data.Entities;
|
||||
using HanyadikHetVan.DTO;
|
||||
|
||||
namespace HanyadikHetVan.Profiles
|
||||
{
|
||||
public class FunFactProfile : Profile
|
||||
{
|
||||
public FunFactProfile()
|
||||
{
|
||||
CreateMap<FunFact, FunFactDTO>();
|
||||
CreateMap<FunFactDTO, FunFact>().ForMember(x => x.Id, options => options.Ignore()).ForMember(x => x.WeeklyTimeSpanId, options => options.Ignore()).ForMember(x => x.Id, options => options.Ignore());
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user