COA.EnterpriseServices/COA.EnterpriseServices.DataAccess/MappingProfile.cs

13 lines
243 B
C#
Raw Normal View History

2020-10-15 12:48:11 +00:00
using AutoMapper;
namespace COA.EnterpriseServices.DataAccess
{
public class MappingProfile : Profile
{
public MappingProfile()
{
// add mappings between domain and entity objects here
}
}
}