namespace Brizco.Core.EntityServices.Handlers.ShiftPlans; public class ChangeShiftPlanTaskStatusCommandHandler(IMediator mediator) : IRequestHandler { public async Task Handle(ChangeShiftPlanTaskStatusCommand request, CancellationToken cancellationToken) { var shiftPlan = await mediator.Send(new GetShiftPlanQuery(request.ShiftPlanId), cancellationToken); return true; } }