18 lines
369 B
C#
18 lines
369 B
C#
using AutoMapper;
|
|
|
|
namespace HRM.UI.Configuration.AutoMapper.Profiles
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class ServicesMappingProfile : Profile
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public ServicesMappingProfile()
|
|
{
|
|
//TODO: complete with business and repository mappings
|
|
}
|
|
}
|
|
} |