|
|
|
@ -28,6 +28,7 @@ public class Ghrh_ResumeServices : BaseServices<Ghrh_Resume, Ghrh_ResumeDto, Ins |
|
|
|
|
private readonly IGhrh_ResumeHomeServices _ghre_ResumeHomeServices; |
|
|
|
|
private readonly IGhrh_ResumeLicenceServices _ghre_ResumeLicenceServices; |
|
|
|
|
private readonly IGhrh_ResumeTrainingServices _ghre_ResumeTrainingServices; |
|
|
|
|
private readonly IGhrh_ResumeStatementServices _ghre_ResumeStatementServices; |
|
|
|
|
public Ghrh_ResumeServices(ICaching caching, |
|
|
|
|
IBaseRepository<Ghrh_Resume> dal, |
|
|
|
|
IGhrh_ResumeEduBGServices ghre_ResumeEduBGServices, |
|
|
|
@ -35,6 +36,7 @@ public class Ghrh_ResumeServices : BaseServices<Ghrh_Resume, Ghrh_ResumeDto, Ins |
|
|
|
|
IGhrh_ResumeHomeServices ghre_ResumeHomeServices, |
|
|
|
|
IGhrh_ResumeLicenceServices ghre_ResumeLicenceServices, |
|
|
|
|
IGhrh_ResumeTrainingServices ghre_ResumeTrainingServices, |
|
|
|
|
IGhrh_ResumeStatementServices ghre_ResumeStatementServices, |
|
|
|
|
IGhrh_ResumeWorkExpServices ghre_ResumeWorkExpServices) |
|
|
|
|
{ |
|
|
|
|
this._dal = dal; |
|
|
|
@ -45,6 +47,7 @@ public class Ghrh_ResumeServices : BaseServices<Ghrh_Resume, Ghrh_ResumeDto, Ins |
|
|
|
|
_ghre_ResumeHomeServices = ghre_ResumeHomeServices; |
|
|
|
|
_ghre_ResumeLicenceServices = ghre_ResumeLicenceServices; |
|
|
|
|
_ghre_ResumeTrainingServices = ghre_ResumeTrainingServices; |
|
|
|
|
_ghre_ResumeStatementServices = ghre_ResumeStatementServices; |
|
|
|
|
_ghre_ResumeWorkExpServices = ghre_ResumeWorkExpServices; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -601,6 +604,7 @@ END"; |
|
|
|
|
Data.Licence = await _ghre_ResumeLicenceServices.QueryDto(x => x.ResumeId != null && x.ResumeId == id);//简历培训记录 |
|
|
|
|
Data.Training = await _ghre_ResumeTrainingServices.QueryDto(x => x.ResumeId != null && x.ResumeId == id);//证件 |
|
|
|
|
Data.Attachment = await Db.Queryable<Ghre_Attachment>().Where(x => x.TableName == id.ObjToString()).ToListAsync(); |
|
|
|
|
Data.Statement = await _ghre_ResumeStatementServices.QueryDto(x => x.ResumeId != null && x.ResumeId == id);//证件 |
|
|
|
|
|
|
|
|
|
obj.Data = Data; |
|
|
|
|
#endregion |
|
|
|
|