diff --git a/Webzine.Entity/Fixtures/ArtisteFactory.cs b/Webzine.Entity/Fixtures/ArtisteFactory.cs
index 4161e35..e9af87b 100644
--- a/Webzine.Entity/Fixtures/ArtisteFactory.cs
+++ b/Webzine.Entity/Fixtures/ArtisteFactory.cs
@@ -13,7 +13,7 @@ namespace Webzine.Entity.Fixtures
///
///
///
- public static Artiste FindByName(string nom)
+ public static Artiste SeedArtisteByName(string nom)
{
// On définit nos albums "bouchonnés"
var albumsData = new[]
diff --git a/Webzine.WebApplication/Controller/AccueilController.cs b/Webzine.WebApplication/Controllers/AccueilController.cs
similarity index 100%
rename from Webzine.WebApplication/Controller/AccueilController.cs
rename to Webzine.WebApplication/Controllers/AccueilController.cs
diff --git a/Webzine.WebApplication/Controller/ApiController.cs b/Webzine.WebApplication/Controllers/ApiController.cs
similarity index 93%
rename from Webzine.WebApplication/Controller/ApiController.cs
rename to Webzine.WebApplication/Controllers/ApiController.cs
index 70d2c51..39e8825 100644
--- a/Webzine.WebApplication/Controller/ApiController.cs
+++ b/Webzine.WebApplication/Controllers/ApiController.cs
@@ -1,6 +1,6 @@
using Microsoft.AspNetCore.Mvc;
-namespace Webzine.WebApplication.Controller;
+namespace Webzine.WebApplication.Controllers;
public class ApiController : ControllerBase
{
diff --git a/Webzine.WebApplication/Controller/ArtisteController.cs b/Webzine.WebApplication/Controllers/ArtisteController.cs
similarity index 96%
rename from Webzine.WebApplication/Controller/ArtisteController.cs
rename to Webzine.WebApplication/Controllers/ArtisteController.cs
index 0f26971..0f5b91a 100644
--- a/Webzine.WebApplication/Controller/ArtisteController.cs
+++ b/Webzine.WebApplication/Controllers/ArtisteController.cs
@@ -31,7 +31,7 @@ namespace Webzine.WebApplication.Controllers
.ToTitleCase(nom.Replace("-", " "));
// On appelle la factory pour obtenir l'artiste unique
- var artiste = ArtisteFactory.FindByName(nomPropre);
+ var artiste = ArtisteFactory.SeedArtisteByName(nomPropre);
if (artiste == null)
{
diff --git a/Webzine.WebApplication/Controller/TitreController.cs b/Webzine.WebApplication/Controllers/TitreController.cs
similarity index 99%
rename from Webzine.WebApplication/Controller/TitreController.cs
rename to Webzine.WebApplication/Controllers/TitreController.cs
index 42693d4..23d400f 100644
--- a/Webzine.WebApplication/Controller/TitreController.cs
+++ b/Webzine.WebApplication/Controllers/TitreController.cs
@@ -3,7 +3,7 @@ using Webzine.Entity;
using Webzine.Entity.Fixtures;
using Webzine.WebApplication.ViewsModels.Titre;
-namespace Webzine.WebApplication.Controller;
+namespace Webzine.WebApplication.Controllers;
///
/// Contrôleur responsable de la gestion des titres musicaux :
diff --git a/Webzine.WebApplication/Views/Shared/_Layout.cshtml b/Webzine.WebApplication/Views/Shared/_Layout.cshtml
index b807a6d..9573fa6 100644
--- a/Webzine.WebApplication/Views/Shared/_Layout.cshtml
+++ b/Webzine.WebApplication/Views/Shared/_Layout.cshtml
@@ -6,7 +6,8 @@
@ViewData["Title"] - Webzine
@* Ajout de bootstrap *@
-
+
+
@* Ajout de font-awesome *@