username@email.com
2023-08-29 9b79040354b59f3182cd90f7157e682d65310712
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
using 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);
    }
}