Commande dotnet format

This commit is contained in:
josephine.vetu
2026-03-28 10:09:18 +01:00
committed by b.nodon
parent 18075a9792
commit fe2a339fc1
51 changed files with 265 additions and 228 deletions

View File

@@ -7,6 +7,7 @@ public class ApiController : ControllerBase
private readonly ILogger<ApiController> logger;
/// <summary>
/// Initializes a new instance of the <see cref="ApiController"/> class.
/// Initialise une nouvelle instance de la classe <see cref="ApiController"/>.
/// </summary>
/// <param name="logger">Service de journalisation injecté pour enregistrer les événements et les erreurs.</param>
@@ -25,10 +26,10 @@ public class ApiController : ControllerBase
{
this.logger.LogInformation("Get Version was called");
return Ok(new
{
nom = "webzine",
version = "2.0",
});
return this.Ok(new
{
nom = "webzine",
version = "2.0",
});
}
}