Compare commits

..

No commits in common. "1dc1d673ddb3a5b8996db9650e417db896f6b6e8" and "d6a585c6ccbdf1d1be584a045b1c230d679ca6c2" have entirely different histories.

1 changed files with 0 additions and 1 deletions

View File

@ -121,7 +121,6 @@ namespace IRaCIS.Core.Application.Service
CreateMap<Doctor, SpecialtyDTO>()
.ForMember(o => o.Speciality, t => t.MapFrom(u => u.Speciality.Value))
.ForMember(o => o.SpecialityCN, t => t.MapFrom(u => u.Speciality.ValueCN))
.ForMember(o => o.DictionaryList, t => t.MapFrom(u => u.DoctorDicRelationList.Where(t => t.KeyName == StaticData.ReadingType || t.KeyName == StaticData.Subspeciality).Select(t => t.Dictionary).OrderBy(t => t.ShowOrder)));
CreateMap<SpecialtyCommand, Doctor>();