22 lines
535 B
C#
22 lines
535 B
C#
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
|
|
}
|
|
}
|