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