using EgwCoreLib.Lux.Data.DbModel.Config; namespace EgwCoreLib.Lux.Data.Repository.Config { public interface IConfProfileRepository : IBaseRepository { Task AddAsync(ProfileModel entity); Task AddRangeAsync(List entityList); Task DeleteAsync(ProfileModel entity); Task> GetAllAsync(); Task GetByIdAsync(int recId); Task GetByUidAsync(string uID); Task UpdateAsync(ProfileModel entity); } }