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);
|
|
}
|
}
|