using Oqtane.Models; using System.Collections.Generic; using System.Threading.Tasks; namespace Oqtane.Services { public interface IScheduleService { Task> GetSchedulesAsync(); Task GetScheduleAsync(int ScheduleId); Task AddScheduleAsync(Schedule Schedule); Task UpdateScheduleAsync(Schedule Schedule); Task DeleteScheduleAsync(int ScheduleId); } }