CollectionMapping.cs 337 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using AutoMapper;
  5. using GxPress.Entity;
  6. using GxPress.Result.App.Collection;
  7. namespace GxPress.Mappings
  8. {
  9. class CollectionMapping : Profile
  10. {
  11. public CollectionMapping()
  12. {
  13. CreateMap<Collection, CollectionResult>();
  14. }
  15. }
  16. }