EchoTex_Payroll/HRM.UI/Configurations/AutoMapper/Profiles/APIMappingProfile.cs

24 lines
592 B
C#
Raw Permalink Normal View History

2024-10-14 10:01:49 +06:00
using AutoMapper;
//using D = Payroll.Api.Models.Responses;
using H = HRM.BO;
//using S = Payroll.Api.Models.Objects;
namespace HRM.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();
}
}
}