using EgwCoreLib.Lux.Data.DbModel.Utils; namespace EgwCoreLib.Lux.Data.Repository.Utils { public interface IGenValRepository : IBaseRepository { #region Public Methods Task AddAsync(GenValueModel entity); Task DeleteAsync(GenValueModel entity); Task GetByIdAsync(int Id); Task> GetFiltAsync(string codClass); Task MoveAsync(GenValueModel selRec, bool moveUp); Task UpdateAsync(GenValueModel entity); #endregion Public Methods } }