| 1234567891011121314 |
- using YBEE.EQM.Core;
- namespace YBEE.EQM.Application;
- public class ExamSampleStudentMapper : IRegister
- {
- public void Register(TypeAdapterConfig config)
- {
- config.ForType<ExamSampleStudent, ExamSampleStudentOrgOutput>()
- .Map(d => d.SysOrgName, s => s.ExamStudent.SysOrg.Name)
- .Map(d => d.SysOrgBranchName, s => s.ExamStudent.SysOrgBranch != null ? s.ExamStudent.SysOrgBranch.Name : "")
- ;
- }
- }
|