Files
Backend-Api/AccountManagement.Application.Contracts/TaskSchedule/ITaskScheduleApplication.cs
2024-08-24 19:13:34 +03:30

12 lines
369 B
C#

using _0_Framework.Application;
using AccountManagement.Application.Contracts.Task;
namespace AccountManagement.Application.Contracts.TaskSchedule;
public interface ITaskScheduleApplication
{
OperationResult Create(CreateTask command);
OperationResult CreateLimitedTasks(CreateTask command);
OperationResult CreateUnlimitedTasks(CreateTask command);
}