username@email.com
2023-09-06 f7ff76aeadd7d92da92ee65ed658b636fa4e8036
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
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);
 
        public PageResult<DocumentProjectInfoDTO> postGetFinancialList(DocumentProjectInfoPageSearch page);
 
 
 
        public PageResult<Document_LayInfo> postDocumentLayInfoList(DocumentProjectInfoPageSearch page);
 
        public bool GetDelDocumentLayInfo(int ID);
 
        public bool SaveDocumentLayInfo(Document_LayInfo dp);
 
        public Document_LayInfo GetDocumentLayInfo(int ID);
 
        public Document_LayInfo GetDocumentLayInfoByName(string LayName);
 
    }
}