12 lines
285 B
C#
12 lines
285 B
C#
namespace DamageAssesment.Api.Locations.Profiles
|
|
{
|
|
public class LocationProfile : AutoMapper.Profile
|
|
{
|
|
public LocationProfile()
|
|
{
|
|
CreateMap<Db.Location, Models.Location>();
|
|
CreateMap<Models.Location, Db.Location>();
|
|
}
|
|
}
|
|
}
|