using System.Threading.Tasks; using _0_Framework.Domain; using AccountManagement.Application.Contracts.TaskSchedule; namespace AccountManagement.Domain.TaskScheduleAgg; public interface ITaskScheduleRepository : IRepository { Task GetDetails(long id); void Remove(TaskSchedule entity); }