Project Update

This commit is contained in:
2026-03-05 04:52:15 +00:00
parent 300aaab167
commit 0c4126d860
15 changed files with 551 additions and 93 deletions

View File

@@ -5,12 +5,11 @@ using Seasoned.Backend.DTOs;
namespace Seasoned.Backend.Controllers;
[ApiController]
[Route("api/[controller]")]
[Route("api/recipe")]
public class RecipeController : ControllerBase
{
private readonly IRecipeService _recipeService;
// Dependency Injection: The service is "injected" here
public RecipeController(IRecipeService recipeService)
{
_recipeService = recipeService;