Review schema gestione repository x evitare concorrezza contesto DbContext

This commit is contained in:
Samuele Locatelli
2026-03-17 09:15:52 +01:00
parent afaa9a5516
commit f70814d444
37 changed files with 544 additions and 461 deletions
@@ -6,7 +6,7 @@ namespace EgwCoreLib.Lux.Data.Repository.Utils
{
#region Public Methods
void Add(GenValueModel entity);
Task<bool> AddAsync(GenValueModel entity);
Task<bool> DeleteAsync(GenValueModel entity);
@@ -16,7 +16,7 @@ namespace EgwCoreLib.Lux.Data.Repository.Utils
Task<bool> MoveAsync(GenValueModel selRec, bool moveUp);
void Update(GenValueModel entity);
Task<bool> UpdateAsync(GenValueModel entity);
#endregion Public Methods
}