collectionListPageResultMapping.cs 400 B

123456789101112131415161718
  1. using AutoMapper;
  2. using GxPress.Entity;
  3. using GxPress.Entity.Middle;
  4. using GxPress.Result.App.Collection;
  5. namespace GxPress.Mappings
  6. {
  7. public class CollectionListPageResultMapping : Profile
  8. {
  9. public CollectionListPageResultMapping()
  10. {
  11. CreateMap<Collection, CollectionListPageResult>();
  12. CreateMap<Middle, CollectionListPageResult>();
  13. }
  14. }
  15. }