20 lines
519 B
C#
20 lines
519 B
C#
|
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());
|
|||
|
}
|
|||
|
}
|
|||
|
}
|