namespace Brizco.Repository.Handlers.Shifts; public class DeletePositionCommandHandler : IRequestHandler { private readonly IRepositoryWrapper _repositoryWrapper; public DeletePositionCommandHandler(IRepositoryWrapper repositoryWrapper) { _repositoryWrapper = repositoryWrapper; } public async Task Handle(DeleteShiftCommand request, CancellationToken cancellationToken) { var shift = await _repositoryWrapper.SetRepository() .TableNoTracking .FirstOrDefaultAsync(s => s.Id == request.Id, cancellationToken); if (shift == null) throw new AppException("Routine not found", ApiResultStatusCode.NotFound); _repositoryWrapper.SetRepository() .Delete(shift); await _repositoryWrapper.SaveChangesAsync(cancellationToken); return true; } }