| 12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace Host
- {
- public class ScheduleManage
- {
- internal ScheduleEntity GetScheduleModel(string jobGroup, string jobName)
- {
- throw new NotImplementedException();
- }
- internal void UpdateScheduleStatus(ScheduleEntity scheduleModel)
- {
- throw new NotImplementedException();
- }
- internal void RemoveScheduleModel(string jobGroup, string jobName)
- {
- throw new NotImplementedException();
- }
- }
- }
|