
diff --git a/src/Components/benchmarkapps/BlazingPizza.Server/SpecialsService.cs b/src/Components/benchmarkapps/BlazingPizza.Server/SpecialsService.cs
deleted file mode 100644
index 6e36dd222297..000000000000
--- a/src/Components/benchmarkapps/BlazingPizza.Server/SpecialsService.cs
+++ /dev/null
@@ -1,77 +0,0 @@
-using System.Collections.Generic;
-
-namespace BlazingPizza.Server
-{
- public class SpecialsService
- {
- public IList
GetSpecials()
- {
- return new PizzaSpecial[]
- {
- new PizzaSpecial()
- {
- Name = "Basic Cheese Pizza",
- Description = "It's cheesy and delicious. Why wouldn't you want one?",
- BasePrice = 9,
- ImageUrl = "img/pizzas/cheese.jpg",
- },
- new PizzaSpecial()
- {
- Id = 2,
- Name = "The Baconatorizor",
- Description = "It has EVERY kind of bacon",
- BasePrice = 12,
- ImageUrl = "img/pizzas/bacon.jpg",
- },
- new PizzaSpecial()
- {
- Id = 3,
- Name = "Classic pepperoni",
- Description = "It's the pizza you grew up with, but Blazing hot!",
- BasePrice = 10,
- ImageUrl = "img/pizzas/pepperoni.jpg",
- },
- new PizzaSpecial()
- {
- Id = 4,
- Name = "Buffalo chicken",
- Description = "Spicy chicken, hot sauce and bleu cheese, guaranteed to warm you up",
- BasePrice = 12,
- ImageUrl = "img/pizzas/meaty.jpg",
- },
- new PizzaSpecial()
- {
- Id = 5,
- Name = "Mushroom Lovers",
- Description = "It has mushrooms. Isn't that obvious?",
- BasePrice = 11,
- ImageUrl = "img/pizzas/mushroom.jpg",
- },
- new PizzaSpecial()
- {
- Id = 6,
- Name = "The Brit",
- Description = "When in London...",
- BasePrice = 10,
- ImageUrl = "img/pizzas/brit.jpg",
- },
- new PizzaSpecial()
- {
- Id = 7,
- Name = "Veggie Delight",
- Description = "It's like salad, but on a pizza",
- BasePrice = 11,
- ImageUrl = "img/pizzas/salad.jpg",
- },
- new PizzaSpecial()
- {
- Id = 8,
- Name = "Margherita",
- Description = "Traditional Italian pizza with tomatoes and basil",
- BasePrice = 9,
- ImageUrl = "img/pizzas/margherita.jpg",
- },
- };
- }
- }
-}
diff --git a/src/Components/benchmarkapps/BlazingPizza.Server/Startup.cs b/src/Components/benchmarkapps/BlazingPizza.Server/Startup.cs
deleted file mode 100644
index 73fb78931ec9..000000000000
--- a/src/Components/benchmarkapps/BlazingPizza.Server/Startup.cs
+++ /dev/null
@@ -1,58 +0,0 @@
-using Microsoft.AspNetCore.Builder;
-using Microsoft.AspNetCore.Hosting;
-using Microsoft.AspNetCore.ResponseCompression;
-using Microsoft.Extensions.Configuration;
-using Microsoft.Extensions.DependencyInjection;
-using Microsoft.Extensions.Hosting;
-using System.Linq;
-using System.Net.Mime;
-
-namespace BlazingPizza.Server
-{
- public class Startup
- {
- public Startup(IConfiguration configuration)
- {
- Configuration = configuration;
- }
-
- public IConfiguration Configuration { get; }
-
- public void ConfigureServices(IServiceCollection services)
- {
- services.AddMvc();
-
- services.AddServerSideBlazor(options => options.DetailedErrors = true);
-
- services.AddScoped();
- services.AddScoped();
- services.AddScoped();
-
- services.AddResponseCompression(options =>
- {
- options.MimeTypes = ResponseCompressionDefaults.MimeTypes.Concat(
- new[] { MediaTypeNames.Application.Octet });
- });
- }
-
- public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
- {
- app.UseResponseCompression();
-
- if (env.IsDevelopment())
- {
- app.UseDeveloperExceptionPage();
- }
-
- app.UseStaticFiles();
-
- app.UseRouting();
-
- app.UseEndpoints(endpoints =>
- {
- endpoints.MapBlazorHub();
- endpoints.MapFallbackToPage("/_Host");
- });
- }
- }
-}
diff --git a/src/Components/benchmarkapps/BlazingPizza.Server/ToppingsService.cs b/src/Components/benchmarkapps/BlazingPizza.Server/ToppingsService.cs
deleted file mode 100644
index 07c80c9790f4..000000000000
--- a/src/Components/benchmarkapps/BlazingPizza.Server/ToppingsService.cs
+++ /dev/null
@@ -1,124 +0,0 @@
-using System.Collections.Generic;
-
-namespace BlazingPizza.Server
-{
- public class ToppingsService
- {
- public IList GetToppings()
- {
- return new Topping[]
- {
- new Topping()
- {
- Name = "Extra cheese",
- Price = 2.50m,
- },
- new Topping()
- {
- Name = "American bacon",
- Price = 2.99m,
- },
- new Topping()
- {
- Name = "British bacon",
- Price = 2.99m,
- },
- new Topping()
- {
- Name = "Canadian bacon",
- Price = 2.99m,
- },
- new Topping()
- {
- Name = "Tea and crumpets",
- Price = 5.00m
- },
- new Topping()
- {
- Name = "Fresh-baked scones",
- Price = 4.50m,
- },
- new Topping()
- {
- Name = "Bell peppers",
- Price = 1.00m,
- },
- new Topping()
- {
- Name = "Onions",
- Price = 1.00m,
- },
- new Topping()
- {
- Name = "Mushrooms",
- Price = 1.00m,
- },
- new Topping()
- {
- Name = "Pepperoni",
- Price = 1.00m,
- },
- new Topping()
- {
- Name = "Duck sausage",
- Price = 3.20m,
- },
- new Topping()
- {
- Name = "Venison meatballs",
- Price = 2.50m,
- },
- new Topping()
- {
- Name = "Served on a silver platter",
- Price = 250.99m,
- },
- new Topping()
- {
- Name = "Lobster on top",
- Price = 64.50m,
- },
- new Topping()
- {
- Name = "Sturgeon caviar",
- Price = 101.75m,
- },
- new Topping()
- {
- Name = "Artichoke hearts",
- Price = 3.40m,
- },
- new Topping()
- {
- Name = "Fresh tomatoes",
- Price = 1.50m,
- },
- new Topping()
- {
- Name = "Basil",
- Price = 1.50m,
- },
- new Topping()
- {
- Name = "Steak (medium-rare)",
- Price = 8.50m,
- },
- new Topping()
- {
- Name = "Blazing hot peppers",
- Price = 4.20m,
- },
- new Topping()
- {
- Name = "Buffalo chicken",
- Price = 5.00m,
- },
- new Topping()
- {
- Name = "Blue cheese",
- Price = 2.50m,
- },
- };
- }
- }
-}
diff --git a/src/Components/benchmarkapps/BlazingPizza.Server/_Imports.razor b/src/Components/benchmarkapps/BlazingPizza.Server/_Imports.razor
index f9e4f6730d74..32f6809bb2e4 100644
--- a/src/Components/benchmarkapps/BlazingPizza.Server/_Imports.razor
+++ b/src/Components/benchmarkapps/BlazingPizza.Server/_Imports.razor
@@ -5,5 +5,6 @@
@using Microsoft.AspNetCore.Components.Web
@using Microsoft.JSInterop
@using BlazingPizza.Server
+@using BlazingPizza.Server.Model
@using BlazingPizza.Server.Shared
@using System.Security.Claims