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