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