8 lines
196 B
C#
8 lines
196 B
C#
using ldap_cesi.Entities;
|
|
|
|
namespace ldap_cesi.Repository.Services;
|
|
|
|
public interface IRepositoryUtilisateur : IRepositoryBase<Utilisateur>
|
|
{
|
|
Task<Utilisateur> GetByEmailAsync(string email);
|
|
} |