Copy from old Repository

This commit is contained in:
Santhosh S
2023-08-15 23:52:30 -04:00
parent 93ef278429
commit 4160c2300b
160 changed files with 8796 additions and 19 deletions

View File

@ -0,0 +1,12 @@
using AutoMapper;
namespace DamageAssesment.Api.Employees.Profiles
{
public class EmployeesProfile:AutoMapper.Profile
{
public EmployeesProfile()
{
CreateMap<Db.Employee, Models.Employee>();
}
}
}