ExamSampleStudentMapper.cs 456 B

1234567891011121314
  1. using YBEE.EQM.Core;
  2. namespace YBEE.EQM.Application;
  3. public class ExamSampleStudentMapper : IRegister
  4. {
  5. public void Register(TypeAdapterConfig config)
  6. {
  7. config.ForType<ExamSampleStudent, ExamSampleStudentOrgOutput>()
  8. .Map(d => d.SysOrgName, s => s.ExamStudent.SysOrg.Name)
  9. .Map(d => d.SysOrgBranchName, s => s.ExamStudent.SysOrgBranch != null ? s.ExamStudent.SysOrgBranch.Name : "")
  10. ;
  11. }
  12. }