using System; using System.Threading.Tasks; using _0_Framework.Application; using AccountManagement.Application.Contracts.Task; namespace AccountManagement.Application.Contracts.TaskSchedule; public interface ITaskScheduleApplication { OperationResult Create(CreateTask command); Task GetDetails(long id); OperationResult Remove(long taskScheduleId); }