2023-11-05 18:00:05 +03:30
|
|
|
|
namespace Brizco.Core.EntityServices.Abstracts;
|
|
|
|
|
|
|
2023-11-23 15:42:59 +03:30
|
|
|
|
public interface IShiftPlanService : IScopedDependency
|
2023-11-05 18:00:05 +03:30
|
|
|
|
{
|
|
|
|
|
|
Task ChangeShiftPlanTaskStatusAsync(Guid shiftPlanId,bool isChangeToShift , bool isDisable);
|
2023-11-23 15:42:59 +03:30
|
|
|
|
Task<bool> CreateAsync(CreateShiftPlanCommand createShiftPlanCommand,CancellationToken cancellationToken);
|
2023-12-11 14:32:29 +03:30
|
|
|
|
Task<bool> CompleteShiftPlanAsync(Guid id,CompleteShiftPlanRequestDto requestDtos, CancellationToken cancellationToken);
|
2023-11-05 18:00:05 +03:30
|
|
|
|
}
|