Newer
Older
BlazorKafkaSignalR / save-points / 07-javascript-interop / BlazingPizza.Server / PizzasController.cs
@Derek Comartin Derek Comartin on 1 Jun 2021 316 bytes Init
using Microsoft.AspNetCore.Mvc;

namespace BlazingPizza.Server
{
    [Route("pizzas")]
    [ApiController]
    public class PizzasController : Controller
    {
        private readonly PizzaStoreContext _db;

        public PizzasController(PizzaStoreContext db)
        {
            _db = db;
        }
    }
}