Files
lux/EgwCoreLib.Lux.Data/Repository/Items/ISellingItemRepository.cs
T
2026-03-25 07:27:51 +01:00

21 lines
678 B
C#

namespace EgwCoreLib.Lux.Data.Repository.Items
{
public interface ISellingItemRepository : IBaseRepository
{
#region Public Methods
Task<bool> AddAsync(SellingItemModel entity);
Task<bool> DeleteAsync(SellingItemModel entity);
Task<SellingItemModel?> GetByIdAsync(int recId);
Task<List<SellingItemModel>> GetByEnvirAsync(EgwMultiEngineManager.Data.Constants.EXECENVIRONMENTS envir);
Task<List<SellingItemModel>> GetFiltAsync(EgwMultiEngineManager.Data.Constants.EXECENVIRONMENTS envir, ItemSourceType sourceType);
Task<bool> UpdateAsync(SellingItemModel entity);
#endregion Public Methods
}
}