15 lines
401 B
C#
15 lines
401 B
C#
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<TaskScheduleDetailsViewModel> GetDetails(long id);
|
|
|
|
OperationResult Remove(long taskScheduleId);
|
|
} |