From 94da0698c01915b1e340415e080aa03050700d97 Mon Sep 17 00:00:00 2001
From: 移动系统liao <liaoxujun@qq.com>
Date: 星期二, 15 十月 2024 17:04:56 +0800
Subject: [PATCH] 增加川印的模型

---
 CoreCms.Net.Services/baifenbingfa/Job_ApplicantProfileServices.cs |   28 +++++++++++++++++++++++++++-
 1 files changed, 27 insertions(+), 1 deletions(-)

diff --git a/CoreCms.Net.Services/baifenbingfa/Job_ApplicantProfileServices.cs b/CoreCms.Net.Services/baifenbingfa/Job_ApplicantProfileServices.cs
index 6928aff..c3ddef3 100644
--- a/CoreCms.Net.Services/baifenbingfa/Job_ApplicantProfileServices.cs
+++ b/CoreCms.Net.Services/baifenbingfa/Job_ApplicantProfileServices.cs
@@ -49,7 +49,7 @@
         /// <returns></returns>
         public async Task<AdminUiCallBack> InsertAsync(Job_ApplicantProfile entity)
         {
-            return await _dal.InsertAsync(entity);
+            return await _dal.NvInsertAsync(entity);
         }
 
         /// <summary>
@@ -126,5 +126,31 @@
         }
         #endregion
 
+
+
+
+        #region 鑾峰彇缂撳瓨鐨勬墍鏈夋暟鎹�==========================================================
+
+        /// <summary>
+        /// 鑾峰彇瀹跺涵鎴愬憳
+        /// </summary>
+        /// <returns></returns>
+        public List<Job_FamilyMember> getJobFamilyMember(int ApplicantProfileId)
+        {
+            var Job_FamilyMembers = _unitOfWork.GetDbClient().Queryable<Job_FamilyMember>().Where(p => p.ApplicantProfileId == ApplicantProfileId).ToList();
+            return Job_FamilyMembers;
+        }
+
+        /// <summary>
+        /// 鑾峰彇宸ヤ綔缁忓巻
+        /// </summary>
+        /// <returns></returns>
+        public List<Job_EmploymentRecord> getJobEmploymentRecord(int ApplicantProfileId)
+        {
+            var job_EmploymentRecords = _unitOfWork.GetDbClient().Queryable<Job_EmploymentRecord>().Where(p => p.ApplicantProfileId == ApplicantProfileId).ToList();
+            return job_EmploymentRecords;
+        }
+
+        #endregion
     }
 }

--
Gitblit v1.9.1