EchoTex_Payroll/Erecruitment.UI/Configurations/AutoMapper/Profiles/APIMappingProfile.cs
2024-10-14 10:01:49 +06:00

24 lines
601 B
C#

using AutoMapper;
//using D = Payroll.Api.Models.Responses;
using H = HRM.BO;
//using S = Payroll.Api.Models.Objects;
namespace Erecruitment.UI.Configuration.AutoMapper.Profiles
{
/// <summary>
///
/// </summary>
public class APIMappingProfile : Profile
{
/// <summary>
///
/// </summary>
public APIMappingProfile()
{
//CreateMap<S.Login, D.LoginResponse>().ReverseMap();
//CreateMap<S.UserExt, D.LoginResponse>().ReverseMap();
//CreateMap<H.User, D.LoginResponse>().ReverseMap();
}
}
}