ScheduleManage.cs 603 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace Host
  6. {
  7. public class ScheduleManage
  8. {
  9. internal ScheduleEntity GetScheduleModel(string jobGroup, string jobName)
  10. {
  11. throw new NotImplementedException();
  12. }
  13. internal void UpdateScheduleStatus(ScheduleEntity scheduleModel)
  14. {
  15. throw new NotImplementedException();
  16. }
  17. internal void RemoveScheduleModel(string jobGroup, string jobName)
  18. {
  19. throw new NotImplementedException();
  20. }
  21. }
  22. }