12 lines
369 B
C#
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);
|
|
|
|
} |