You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CustomerMappingProfile.cs 317B

1234567891011121314
  1. using AutoMapper;
  2. using Diligent.WebAPI.Data.Entities;
  3. using Diligent.WebAPI.Host.DTOs.Customer;
  4. namespace Diligent.WebAPI.Host.Mapper
  5. {
  6. public class CustomerMappingProfile : Profile
  7. {
  8. public CustomerMappingProfile()
  9. {
  10. CreateMap<Customer, CustomerReadDTO>();
  11. }
  12. }
  13. }