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