修改
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
c2360dd519
commit
0f682dd184
|
@ -24,6 +24,8 @@
|
||||||
public string FirstName { get; set; } = string.Empty;
|
public string FirstName { get; set; } = string.Empty;
|
||||||
public string FullName => LastName + " / " + FirstName;
|
public string FullName => LastName + " / " + FirstName;
|
||||||
public string LastName { get; set; } = string.Empty;
|
public string LastName { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
public string UserName { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
public class SetAttachmentAuthorizedView
|
public class SetAttachmentAuthorizedView
|
||||||
|
|
|
@ -76,6 +76,7 @@ namespace IRaCIS.Core.Application.Service
|
||||||
.ForMember(d => d.ChineseName, u => u.MapFrom(t => t.Doctor.ChineseName))
|
.ForMember(d => d.ChineseName, u => u.MapFrom(t => t.Doctor.ChineseName))
|
||||||
.ForMember(d => d.FirstName, u => u.MapFrom(t => t.Doctor.FirstName))
|
.ForMember(d => d.FirstName, u => u.MapFrom(t => t.Doctor.FirstName))
|
||||||
.ForMember(d => d.LastName, u => u.MapFrom(t => t.Doctor.LastName))
|
.ForMember(d => d.LastName, u => u.MapFrom(t => t.Doctor.LastName))
|
||||||
|
.ForMember(d => d.UserName, u => u.MapFrom(t => t.Doctor.UserRole.UserName))
|
||||||
;
|
;
|
||||||
CreateMap<Doctor, GetTrialDoctorListOutDto>();
|
CreateMap<Doctor, GetTrialDoctorListOutDto>();
|
||||||
CreateMap<Doctor, ResumeConfirmDTO>();
|
CreateMap<Doctor, ResumeConfirmDTO>();
|
||||||
|
|
Loading…
Reference in New Issue