This repository has been archived on 2021-04-30. You can view files and clone it, but cannot push or open issues or pull requests.
blazing-workshop/BlazingPizza.Server/PizzasController.cs
2020-12-17 16:52:43 +01:00

17 lines
316 B
C#

using Microsoft.AspNetCore.Mvc;
namespace BlazingPizza.Server
{
[Route("pizzas")]
[ApiController]
public class PizzasController : Controller
{
private readonly PizzaStoreContext _db;
public PizzasController(PizzaStoreContext db)
{
_db = db;
}
}
}