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(); } } }