2023-08-15 23:52:30 -04:00
|
|
|
|
using AutoMapper;
|
|
|
|
|
|
|
|
|
|
namespace DamageAssesment.Api.Employees.Profiles
|
|
|
|
|
{
|
|
|
|
|
public class EmployeesProfile:AutoMapper.Profile
|
|
|
|
|
{
|
|
|
|
|
public EmployeesProfile()
|
|
|
|
|
{
|
|
|
|
|
CreateMap<Db.Employee, Models.Employee>();
|
2023-09-13 01:28:24 -04:00
|
|
|
|
CreateMap<Models.Employee, Db.Employee>();
|
2023-08-15 23:52:30 -04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|