10 lines
432 B
C#
10 lines
432 B
C#
using DigitalData.Core.Abstractions.Infrastructure;
|
|
using DigitalData.UserManager.Domain.Entities;
|
|
|
|
namespace DigitalData.UserManager.Infrastructure.Contracts
|
|
{
|
|
public interface IUserRepRepository : ICRUDRepository<UserRep, int>
|
|
{
|
|
Task<IEnumerable<UserRep>> ReadAllAsync(bool withUser = false, bool withRepGroup = false, bool withRightGroup = false, bool withRepUser = false, int? userId = null);
|
|
}
|
|
} |