13 lines
249 B
C#
13 lines
249 B
C#
using AutoMapper;
|
|
|
|
namespace DamageAssesment.Api.Employees.Profiles
|
|
{
|
|
public class EmployeesProfile:AutoMapper.Profile
|
|
{
|
|
public EmployeesProfile()
|
|
{
|
|
CreateMap<Db.Employee, Models.Employee>();
|
|
}
|
|
}
|
|
}
|