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