- 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:
2025-03-02 16:50:53 +01:00
parent 4b63e1a1d0
commit 8901f921c7
50 changed files with 900 additions and 29 deletions

View 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;
}
}