Skip to content

Commit 6ed69eb

Browse files
authored
Add SaveChange virtual methods and publish to NuGet
Develop
2 parents 85de8e0 + 1b71805 commit 6ed69eb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/KSFramework/GenericRepository/IUnitOfWork.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ public interface IUnitOfWork : IDisposable
1818
Task<int> SaveChangesAsync(bool acceptAllChangesOnSuccess,
1919
CancellationToken cancellationToken = default);
2020

21-
/// <inheritdoc cref="SaveChanges"/>
21+
/// <inheritdoc cref="SaveChanges(bool)"/>
2222
int SaveChanges(bool acceptAllChangesOnSuccess);
2323

24-
/// <inheritdoc cref="SaveChanges"/>
24+
/// <inheritdoc cref="SaveChanges()"/>
2525
int SaveChanges();
2626

2727
/// <summary>

0 commit comments

Comments
 (0)