├── App.razor ├── Controllers ├── PizzaController.cs └── WeatherForecastController.cs ├── Data ├── AppDbContext.cs └── Migrations │ ├── 20230422174632_initials.Designer.cs │ ├── 20230422174632_initials.cs │ ├── 20230422175804_UpdateTables.Designer.cs │ ├── 20230422175804_UpdateTables.cs │ └── AppDbContextModelSnapshot.cs ├── DataModels ├── MyOrdersModel.cs ├── OrderModel.cs ├── PizzaModel.cs └── Response.cs ├── Models └── Pizza.cs ├── Pages ├── AdministrationComponent.razor ├── Error.cshtml ├── Error.cshtml.cs ├── Index.razor ├── MyOrders.razor ├── PizzaList.razor └── _Host.cshtml ├── PizzaBay.csproj ├── PizzaBay.csproj.user ├── PizzaBay.sln ├── PizzaBayServer.csproj ├── PizzaBayServer.csproj.user ├── PizzaLogic.csproj ├── Program.cs ├── Properties └── launchSettings.json ├── README.md ├── Services ├── IOrderService.cs ├── IService.cs ├── OrderService.cs └── Service.cs ├── _Imports.razor ├── appsettings.Development.json └── appsettings.json /App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netcode-Hub/NET-7-Pizza-Ordering-Shop-in-Blazor-Server---Full-Project/HEAD/App.razor -------------------------------------------------------------------------------- /Controllers/PizzaController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netcode-Hub/NET-7-Pizza-Ordering-Shop-in-Blazor-Server---Full-Project/HEAD/Controllers/PizzaController.cs -------------------------------------------------------------------------------- /Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netcode-Hub/NET-7-Pizza-Ordering-Shop-in-Blazor-Server---Full-Project/HEAD/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /Data/AppDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netcode-Hub/NET-7-Pizza-Ordering-Shop-in-Blazor-Server---Full-Project/HEAD/Data/AppDbContext.cs -------------------------------------------------------------------------------- /Data/Migrations/20230422174632_initials.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netcode-Hub/NET-7-Pizza-Ordering-Shop-in-Blazor-Server---Full-Project/HEAD/Data/Migrations/20230422174632_initials.Designer.cs -------------------------------------------------------------------------------- /Data/Migrations/20230422174632_initials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netcode-Hub/NET-7-Pizza-Ordering-Shop-in-Blazor-Server---Full-Project/HEAD/Data/Migrations/20230422174632_initials.cs -------------------------------------------------------------------------------- /Data/Migrations/20230422175804_UpdateTables.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netcode-Hub/NET-7-Pizza-Ordering-Shop-in-Blazor-Server---Full-Project/HEAD/Data/Migrations/20230422175804_UpdateTables.Designer.cs -------------------------------------------------------------------------------- /Data/Migrations/20230422175804_UpdateTables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netcode-Hub/NET-7-Pizza-Ordering-Shop-in-Blazor-Server---Full-Project/HEAD/Data/Migrations/20230422175804_UpdateTables.cs -------------------------------------------------------------------------------- /Data/Migrations/AppDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netcode-Hub/NET-7-Pizza-Ordering-Shop-in-Blazor-Server---Full-Project/HEAD/Data/Migrations/AppDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /DataModels/MyOrdersModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netcode-Hub/NET-7-Pizza-Ordering-Shop-in-Blazor-Server---Full-Project/HEAD/DataModels/MyOrdersModel.cs -------------------------------------------------------------------------------- /DataModels/OrderModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netcode-Hub/NET-7-Pizza-Ordering-Shop-in-Blazor-Server---Full-Project/HEAD/DataModels/OrderModel.cs -------------------------------------------------------------------------------- /DataModels/PizzaModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netcode-Hub/NET-7-Pizza-Ordering-Shop-in-Blazor-Server---Full-Project/HEAD/DataModels/PizzaModel.cs -------------------------------------------------------------------------------- /DataModels/Response.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netcode-Hub/NET-7-Pizza-Ordering-Shop-in-Blazor-Server---Full-Project/HEAD/DataModels/Response.cs -------------------------------------------------------------------------------- /Models/Pizza.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netcode-Hub/NET-7-Pizza-Ordering-Shop-in-Blazor-Server---Full-Project/HEAD/Models/Pizza.cs -------------------------------------------------------------------------------- /Pages/AdministrationComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netcode-Hub/NET-7-Pizza-Ordering-Shop-in-Blazor-Server---Full-Project/HEAD/Pages/AdministrationComponent.razor -------------------------------------------------------------------------------- /Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netcode-Hub/NET-7-Pizza-Ordering-Shop-in-Blazor-Server---Full-Project/HEAD/Pages/Error.cshtml -------------------------------------------------------------------------------- /Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netcode-Hub/NET-7-Pizza-Ordering-Shop-in-Blazor-Server---Full-Project/HEAD/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /Pages/Index.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netcode-Hub/NET-7-Pizza-Ordering-Shop-in-Blazor-Server---Full-Project/HEAD/Pages/Index.razor -------------------------------------------------------------------------------- /Pages/MyOrders.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netcode-Hub/NET-7-Pizza-Ordering-Shop-in-Blazor-Server---Full-Project/HEAD/Pages/MyOrders.razor -------------------------------------------------------------------------------- /Pages/PizzaList.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netcode-Hub/NET-7-Pizza-Ordering-Shop-in-Blazor-Server---Full-Project/HEAD/Pages/PizzaList.razor -------------------------------------------------------------------------------- /Pages/_Host.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netcode-Hub/NET-7-Pizza-Ordering-Shop-in-Blazor-Server---Full-Project/HEAD/Pages/_Host.cshtml -------------------------------------------------------------------------------- /PizzaBay.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netcode-Hub/NET-7-Pizza-Ordering-Shop-in-Blazor-Server---Full-Project/HEAD/PizzaBay.csproj -------------------------------------------------------------------------------- /PizzaBay.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netcode-Hub/NET-7-Pizza-Ordering-Shop-in-Blazor-Server---Full-Project/HEAD/PizzaBay.csproj.user -------------------------------------------------------------------------------- /PizzaBay.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netcode-Hub/NET-7-Pizza-Ordering-Shop-in-Blazor-Server---Full-Project/HEAD/PizzaBay.sln -------------------------------------------------------------------------------- /PizzaBayServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netcode-Hub/NET-7-Pizza-Ordering-Shop-in-Blazor-Server---Full-Project/HEAD/PizzaBayServer.csproj -------------------------------------------------------------------------------- /PizzaBayServer.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netcode-Hub/NET-7-Pizza-Ordering-Shop-in-Blazor-Server---Full-Project/HEAD/PizzaBayServer.csproj.user -------------------------------------------------------------------------------- /PizzaLogic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netcode-Hub/NET-7-Pizza-Ordering-Shop-in-Blazor-Server---Full-Project/HEAD/PizzaLogic.csproj -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netcode-Hub/NET-7-Pizza-Ordering-Shop-in-Blazor-Server---Full-Project/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netcode-Hub/NET-7-Pizza-Ordering-Shop-in-Blazor-Server---Full-Project/HEAD/Properties/launchSettings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netcode-Hub/NET-7-Pizza-Ordering-Shop-in-Blazor-Server---Full-Project/HEAD/README.md -------------------------------------------------------------------------------- /Services/IOrderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netcode-Hub/NET-7-Pizza-Ordering-Shop-in-Blazor-Server---Full-Project/HEAD/Services/IOrderService.cs -------------------------------------------------------------------------------- /Services/IService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netcode-Hub/NET-7-Pizza-Ordering-Shop-in-Blazor-Server---Full-Project/HEAD/Services/IService.cs -------------------------------------------------------------------------------- /Services/OrderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netcode-Hub/NET-7-Pizza-Ordering-Shop-in-Blazor-Server---Full-Project/HEAD/Services/OrderService.cs -------------------------------------------------------------------------------- /Services/Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netcode-Hub/NET-7-Pizza-Ordering-Shop-in-Blazor-Server---Full-Project/HEAD/Services/Service.cs -------------------------------------------------------------------------------- /_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netcode-Hub/NET-7-Pizza-Ordering-Shop-in-Blazor-Server---Full-Project/HEAD/_Imports.razor -------------------------------------------------------------------------------- /appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netcode-Hub/NET-7-Pizza-Ordering-Shop-in-Blazor-Server---Full-Project/HEAD/appsettings.Development.json -------------------------------------------------------------------------------- /appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Netcode-Hub/NET-7-Pizza-Ordering-Shop-in-Blazor-Server---Full-Project/HEAD/appsettings.json --------------------------------------------------------------------------------