- Ajout d'automapper pour convertir les dto en entité et inversement
- Ajout des méthodes nécessaire pour la gestion de JWT
This commit is contained in:
15
ldap-cesi/Services/RoleService.cs
Normal file
15
ldap-cesi/Services/RoleService.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using ldap_cesi.Repository.Services;
|
||||
using ldap_cesi.Services.Interfaces;
|
||||
|
||||
namespace ldap_cesi.Services;
|
||||
|
||||
public class RoleService : IRoleService
|
||||
{
|
||||
private IRepositoryRole _repositoryRole;
|
||||
|
||||
public RoleService(IRepositoryRole repositoryRole)
|
||||
{
|
||||
_repositoryRole = repositoryRole;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user