12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using EMIS.Entities;
- namespace EMIS.CommonLogic.SystemServices
- {
- public interface IScheduleServices
- {
- void UpdateLastRun(Guid schedulerID);
- void UpdateLastRunAndLoopNum(Guid schedulerID);
- void InsertLog(Sys_ScheduleLog log);
- List<Sys_Scheduling> GetJobList();
- }
- }
|