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