20 lines
512 B
C#
20 lines
512 B
C#
namespace EgwCoreLib.Lux.Data.Repository.Config
|
|
{
|
|
public interface IConfProfileRepository : IBaseRepository
|
|
{
|
|
Task<bool> AddAsync(ProfileModel entity);
|
|
|
|
Task<bool> AddRangeAsync(List<ProfileModel> entityList);
|
|
|
|
Task<bool> DeleteAsync(ProfileModel entity);
|
|
|
|
Task<List<ProfileModel>> GetAllAsync();
|
|
|
|
Task<ProfileModel?> GetByIdAsync(int recId);
|
|
|
|
Task<ProfileModel?> GetByUidAsync(string uID);
|
|
|
|
Task<bool> UpdateAsync(ProfileModel entity);
|
|
}
|
|
}
|