DepartmentMapping.cs 395 B

12345678910111213141516
  1. using AutoMapper;
  2. using GxPress.Entity;
  3. using GxPress.Result.Department;
  4. namespace GxPress.Mappings
  5. {
  6. public class DepartmentMapping : Profile
  7. {
  8. public DepartmentMapping()
  9. {
  10. CreateMap<Department, DepartmentTreeResult>();
  11. CreateMap<Department, DepartmentResult>();
  12. CreateMap<DepartmentResult, DepartmentTreeResult>();
  13. }
  14. }
  15. }