username@email.com
2023-10-17 3f4013e9283d1fe29ef40cc8b4d7ee7a590a1590
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
using DocumentServiceAPI.Application.WorkRemind.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.WorkRemind.Services.Interfaces
{
    public interface IWorkRemindService
    {
        public Document_WorkRemind GetWorkRemindInfo(int ID);
 
        public bool UpEmployee(Document_WorkRemind dw);
 
        public bool InEmployee(Document_WorkRemind dw);
        public List<Document_EmployeeInfo> GetUEmployeeInfoList();
 
        public PageResult<DocumentWorkRemindDTO> postWorkRemindList(WorkRemindPageSearch page);
 
        public bool DelEmployee(int ID);
 
        public List<Document_Dictionary> GetDictionaryList();
 
        public List<Sys_CitySite> GetCitySiteList(int CityLevel);
 
        public List<DocumentEmployeeInfoDTO> GetEmployeeListByStatus(int isWork, int Role);
    }
}