EchoTex_Payroll/HRM.UI/Helpers/AutoMapperProfiles.cs

21 lines
482 B
C#
Raw Normal View History

2024-10-14 10:01:49 +06:00
using AutoMapper;
using HRM.BO;
using HRM.UI.DTOs.Leave;
using HRM.UI.DTOs.Training;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace HRM.UI.Helpers
{
public class AutoMapperProfiles : Profile
{
public AutoMapperProfiles()
{
CreateMap<TrainingType, TrainingTypeDto>();
//CreateMap<Leave, LeaveDto>();
//CreateMap<LeaveEntry, LeaveEntryDto>();
}
}
}