19 lines
416 B
C#
19 lines
416 B
C#
using EgwCoreLib.Lux.Data.DbModel.Config;
|
|
|
|
namespace EgwCoreLib.Lux.Data.Repository.Config
|
|
{
|
|
public interface IConfWoodRepository : IBaseRepository
|
|
{
|
|
Task<bool> AddAsync(WoodModel entity);
|
|
|
|
|
|
Task<bool> DeleteAsync(WoodModel entity);
|
|
|
|
Task<List<WoodModel>> GetAllAsync();
|
|
|
|
Task<WoodModel?> GetByIdAsync(int recId);
|
|
|
|
Task<bool> UpdateAsync(WoodModel entity);
|
|
}
|
|
}
|