您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }