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/ToppingsController.cs
2020-12-17 16:52:43 +01:00

27 lines
624 B
C#

using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using Microsoft.EntityFrameworkCore;
namespace BlazingPizza.Server
{
[Route("toppings")]
[ApiController]
public class ToppingsController : Controller
{
private readonly PizzaStoreContext _db;
public ToppingsController(PizzaStoreContext db)
{
_db = db;
}
[HttpGet]
public async Task<ActionResult<List<Topping>>> GetToppings()
{
return await _db.Toppings.OrderBy(t => t.Name).ToListAsync();
}
}
}