IScheduleServices.cs 401 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using EMIS.Entities;
  6. namespace EMIS.CommonLogic.SystemServices
  7. {
  8. public interface IScheduleServices
  9. {
  10. void UpdateLastRun(Guid schedulerID);
  11. void UpdateLastRunAndLoopNum(Guid schedulerID);
  12. void InsertLog(Sys_ScheduleLog log);
  13. List<Sys_Scheduling> GetJobList();
  14. }
  15. }