Bozza inizio modifica conversione servizi e controller a repository (da testare)

This commit is contained in:
Samuele Locatelli
2026-03-14 07:44:13 +01:00
parent 41646d7164
commit 21232a3343
21 changed files with 356 additions and 165 deletions
@@ -0,0 +1,7 @@
namespace EgwCoreLib.Lux.Data.Repository
{
public interface IBaseRepository
{
Task<bool> SaveChangesAsync();
}
}