From ca12247dbc0728c7900db4188565d4c4f7d907c4 Mon Sep 17 00:00:00 2001
From: username@email.com <yzy2002yzy@163.com>
Date: 星期二, 29 八月 2023 09:25:54 +0800
Subject: [PATCH] Merge branch 'master' of http://47.108.235.38:8080/r/DocumentService

---
 DocumentServiceAPI.Application/ProjectInfo/Services/Interfaces/ISheZhiService.cs |   48 ++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 48 insertions(+), 0 deletions(-)

diff --git a/DocumentServiceAPI.Application/ProjectInfo/Services/Interfaces/ISheZhiService.cs b/DocumentServiceAPI.Application/ProjectInfo/Services/Interfaces/ISheZhiService.cs
new file mode 100644
index 0000000..80a6b66
--- /dev/null
+++ b/DocumentServiceAPI.Application/ProjectInfo/Services/Interfaces/ISheZhiService.cs
@@ -0,0 +1,48 @@
+锘縰sing DocumentServiceAPI.Application.ProjectInfo.ViewMode;
+using DocumentServiceAPI.Model.cyDocumentModel;
+using DocumentServiceAPI.Utility;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace DocumentServiceAPI.Application.ProjectInfo.Services.Interfaces
+{
+    public interface ISheZhiService
+    {
+        public PageResult<Document_DelegatePersonInfo> postDelegatePersonList(DocumentProjectInfoPageSearch page);
+
+        public bool GetDelDocumentDelegatePersonInfo(int ID);
+
+        public bool SaveDocumentDelegatePersonInfo(Document_DelegatePersonInfo dp);
+
+        public Document_DelegatePersonInfo GetDocumentDelegatePersonInfo(int ID);
+
+
+        public PageResult<Document_TenderUnit> postDocumentTenderUnitList(DocumentProjectInfoPageSearch page);
+
+
+        public bool SaveDocumentTenderUnitInfo(Document_TenderUnit dp);
+
+        public Document_TenderUnit GetDocumentTenderUnitInfo(int ID);
+
+
+
+
+        public PageResult<DocumentEmployeeInfoDTO> postDocumentEmployeeInfoList(DocumentProjectInfoPageSearch page);
+
+        public bool GetDelDocumentEmployeeInfoInfo(int ID);
+
+        public bool SaveDocumentEmployeeInfoInfo(DocumentEmployeeInfoDTO dp);
+
+        public DocumentEmployeeInfoDTO GetDocumentEmployeeInfoInfo(int ID);
+
+        public Document_EmployeeInfo GetDocumentEmployeeInfoByName(string EmployeeName);
+
+        public Document_EmployeeInfo GetDocumentEmployeeInfoByLoginName(string textUserName);
+
+
+        public PageResult<Document_PerformanceInfo> GetDocumentPerformanceInfoListByPaper(DocumentProjectInfoPageSearch page);
+    }
+}

--
Gitblit v1.9.1