From 5eca5f1d4b6cdf1f553f1171bdc7ab6a3c0aa738 Mon Sep 17 00:00:00 2001 From: TekH Date: Thu, 9 Jul 2026 15:44:40 +0200 Subject: [PATCH] Remove SaveChangesAsync from IRepository interface The `SaveChangesAsync` method was removed from the `IRepository` interface in the `ECMJobRunner.Domain.Interfaces` namespace. This method previously allowed saving all changes asynchronously with an optional `CancellationToken` parameter. --- ECMJobRunner.Domain/Interfaces/IRepository.cs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/ECMJobRunner.Domain/Interfaces/IRepository.cs b/ECMJobRunner.Domain/Interfaces/IRepository.cs index 204414d..d19cb92 100644 --- a/ECMJobRunner.Domain/Interfaces/IRepository.cs +++ b/ECMJobRunner.Domain/Interfaces/IRepository.cs @@ -90,10 +90,5 @@ namespace ECMJobRunner.Domain.Interfaces /// Cancellation token /// True if entity was found and deleted, false otherwise Task DeleteSingleAsync(Expression> predicate, CancellationToken cancellationToken = default); - - /// - /// Save all changes asynchronously - /// - Task SaveChangesAsync(CancellationToken cancellationToken = default); } }