This commit is contained in:
19
HanyadikHetVan/Profiles/PauseProfile.cs
Normal file
19
HanyadikHetVan/Profiles/PauseProfile.cs
Normal file
@ -0,0 +1,19 @@
|
||||
using AutoMapper;
|
||||
using HanyadikHetVan.Data.Entities;
|
||||
using HanyadikHetVan.DTO;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace HanyadikHetVan.Profiles
|
||||
{
|
||||
public class PauseProfile : Profile
|
||||
{
|
||||
public PauseProfile()
|
||||
{
|
||||
CreateMap<Pause, PauseDTO>();
|
||||
CreateMap<PauseDTO, Pause>().ForMember(x => x.Id, options => options.Ignore()).ForMember(x => x.WeeklyTimeSpanId, options => options.Ignore());
|
||||
}
|
||||
}
|
||||
}
|
15
HanyadikHetVan/Profiles/PurseProfile.cs
Normal file
15
HanyadikHetVan/Profiles/PurseProfile.cs
Normal file
@ -0,0 +1,15 @@
|
||||
using AutoMapper;
|
||||
using HanyadikHetVan.Data.Entities;
|
||||
using HanyadikHetVan.DTO;
|
||||
|
||||
namespace HanyadikHetVan.Profiles
|
||||
{
|
||||
public class PurseProfile : Profile
|
||||
{
|
||||
public PurseProfile()
|
||||
{
|
||||
CreateMap<Purse, PurseDTO>();
|
||||
CreateMap<PurseDTO, Purse>().ForMember(x => x.User, options => options.Ignore()).ForMember(x => x.UserId, options => options.Ignore()).ForMember(x => x.Id, options => options.Ignore());
|
||||
}
|
||||
}
|
||||
}
|
19
HanyadikHetVan/Profiles/WeeklyTimeSpanProfile.cs
Normal file
19
HanyadikHetVan/Profiles/WeeklyTimeSpanProfile.cs
Normal file
@ -0,0 +1,19 @@
|
||||
using AutoMapper;
|
||||
using HanyadikHetVan.Data.Entities;
|
||||
using HanyadikHetVan.DTO;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace HanyadikHetVan.Profiles
|
||||
{
|
||||
public class WeeklyTimeSpanProfile : Profile
|
||||
{
|
||||
public WeeklyTimeSpanProfile()
|
||||
{
|
||||
CreateMap<WeeklyTimeSpan, WeeklyTimeSpanDTO>();
|
||||
CreateMap<WeeklyTimeSpanDTO, WeeklyTimeSpan>().ForMember(x => x.Id, options => options.Ignore()).ForMember(x => x.Owner, options => options.Ignore()).ForMember(x => x.OwnerId, options => options.Ignore());
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user