Inizio porting repository x GenVal...

This commit is contained in:
Samuele Locatelli
2026-03-14 11:51:23 +01:00
parent 2228dbe439
commit fbc88aef65
3 changed files with 112 additions and 27 deletions
@@ -0,0 +1,19 @@
using EgwCoreLib.Lux.Data.DbModel.Utils;
namespace EgwCoreLib.Lux.Data.Repository.Utils
{
public interface IGenValRepository : IBaseRepository
{
#region Public Methods
void Add(GenValueModel entity);
Task<bool> DeleteAsync(GenValueModel entity);
Task<List<GenValueModel>> GetFiltAsync(string codClass);
void Update(GenValueModel entity);
#endregion Public Methods
}
}