You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
810 B
37 lines
810 B
using WebAPIWithEF.Models;
|
|
|
|
namespace WebAPIWithEF.Services
|
|
{
|
|
public class PizzaService
|
|
{
|
|
public IEnumerable<Pizza> GetAll()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public Pizza? GetById(int id)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public Pizza? Create(Pizza newPizza)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void AddTopping(int PizzaId, int ToppingId)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void UpdateSauce(int PizzaId, int SauceId)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void DeleteById(int id)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|
|
|