Files
lux/EgwCoreLib.Lux.Data/Repository/Utils/IGenValRepository.cs
T
2026-03-14 12:06:47 +01:00

24 lines
555 B
C#

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<GenValueModel?> GetByIdAsync(int Id);
Task<List<GenValueModel>> GetFiltAsync(string codClass);
Task<bool> MoveAsync(GenValueModel selRec, bool moveUp);
void Update(GenValueModel entity);
#endregion Public Methods
}
}