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 GetUEmployeeInfoList(); public PageResult postWorkRemindList(WorkRemindPageSearch page); public bool DelEmployee(int ID); public List GetDictionaryList(); public List GetCitySiteList(int CityLevel); public List GetEmployeeListByStatus(int isWork, int Role); } }