Files
lux/EgwCoreLib.Lux.Data/Repository/Utils/IGenValRepository.cs
T

24 lines
577 B
C#

using EgwCoreLib.Lux.Data.DbModel.Utils;
namespace EgwCoreLib.Lux.Data.Repository.Utils
{
public interface IGenValRepository : IBaseRepository
{
#region Public Methods
Task<bool> AddAsync(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);
Task<bool> UpdateAsync(GenValueModel entity);
#endregion Public Methods
}
}