12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using AutoMapper;
- using GxPress.Entity;
- using GxPress.Result.App.Collection;
- namespace GxPress.Mappings
- {
- class CollectionMapping : Profile
- {
- public CollectionMapping()
- {
- CreateMap<Collection, CollectionResult>();
- }
- }
- }
|