This commit is contained in:
2026-05-04 00:37:06 +03:30
parent 37e537f385
commit fcf02c9b7b
21 changed files with 5640 additions and 2748 deletions
+3 -1
View File
@@ -1,3 +1,4 @@
using System.Threading;
using System.Threading.Tasks;
using xModels.Base;
@@ -6,7 +7,8 @@ namespace xDataService.Interfaces {
where TEntity : XBaseEntity<TKey> {
bool IsEmpty (TKey id);
Task<TKey> GenerateKey (
IXBaseRepository<TEntity, TKey> repository
IXBaseRepository<TEntity, TKey> repository,
CancellationToken cancellationToken = default
);
}
}