├── .aspire └── settings.json ├── .editorconfig ├── .gitattributes ├── .gitignore ├── Directory.Build.props ├── LICENSE ├── MyRestaurantApi.AppHost ├── AppHost.cs ├── MyRestaurantApi.AppHost.csproj ├── Properties │ └── launchSettings.json ├── appsettings.Development.json └── appsettings.json ├── MyRestaurantApi.ServiceDefaults ├── Extensions.cs └── MyRestaurantApi.ServiceDefaults.csproj ├── MyRestaurantApi.sln ├── MyRestaurantApi ├── .config │ └── dotnet-tools.json ├── Contact.cs ├── ContactEndpoints.cs ├── Data │ └── MyRestaurantApiContext.cs ├── MenuItem.cs ├── MenuItemCategory.cs ├── MenuItemEndpoints.cs ├── MenuItemOrdered.cs ├── MenuItemOrderedEndpoints.cs ├── Migrations │ ├── 20240830040043_sqlite_migration_675.Designer.cs │ ├── 20240830040043_sqlite_migration_675.cs │ └── MyRestaurantApiContextModelSnapshot.cs ├── MyRestaurantApi.csproj ├── MyRestaurantApi.http ├── OrderStatus.cs ├── PaymentMethod.cs ├── Program.cs ├── Properties │ ├── ServiceDependencies │ │ ├── MyRestaurantApi20240207171715 - Web Deploy │ │ │ └── profile.arm.json │ │ └── MyRestaurantApi20240806012442 - Web Deploy │ │ │ └── profile.arm.json │ └── launchSettings.json ├── SampleRequests.http ├── TogoOrder.cs ├── TogoOrderEndpoints.cs ├── appsettings.Development.json ├── appsettings.json ├── auth.http ├── demo.http ├── dotnetconf.http ├── http-client.env.json ├── openapi-restaurant.json └── wwwroot │ ├── index.html │ └── swagger-ui │ ├── dark-theme.css │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── index.css │ ├── index.html │ ├── oauth2-redirect.html │ ├── swagger-initializer.js │ ├── swagger-ui-bundle.js │ ├── swagger-ui-bundle.js.map │ ├── swagger-ui-es-bundle-core.js │ ├── swagger-ui-es-bundle-core.js.map │ ├── swagger-ui-es-bundle.js │ ├── swagger-ui-es-bundle.js.map │ ├── swagger-ui-standalone-preset.js │ ├── swagger-ui-standalone-preset.js.map │ ├── swagger-ui.css │ ├── swagger-ui.css.map │ ├── swagger-ui.js │ └── swagger-ui.js.map ├── README.md ├── RestaurantServiceMcp ├── ContactTool.cs ├── EchoTool.cs ├── MenuItemOrderedTool.cs ├── MenuItemTool.cs ├── Program.cs ├── README.md ├── RestaurantServiceMcp.csproj ├── Settings.cs ├── TogoOrderTool.cs └── appsettings.json ├── media ├── menu-items │ ├── cheeseburger-and-fries1.webp │ ├── cheeseburger-and-fries2.webp │ ├── chicken-and-waffle.webp │ ├── country-fried-steak.webp │ └── fish-and-chips.webp ├── readme-vs-connected-services.png ├── readme-vs-cs-update-database.png ├── restaurant-interior-01.webp ├── the-cozy-plate-logo.pptx └── the-cozy-plate-logo.svg └── restaurantweb ├── .gitignore ├── CHANGELOG.md ├── README.md ├── eslint.config.js ├── index.html ├── package-lock.json ├── package.json ├── public ├── favicon.svg ├── restaurant-interior-01.webp ├── the-cozy-plate-logo-with-background-color.svg ├── the-cozy-plate-logo.svg └── vite.svg ├── restaurantweb.esproj ├── src ├── App.css ├── App.jsx ├── Layout.jsx ├── assets │ └── react.svg ├── components │ ├── CustomerInfo.css │ ├── CustomerInfo.jsx │ ├── Menu.css │ ├── Menu.jsx │ ├── MenuItem.jsx │ ├── Navigation.css │ ├── Navigation.jsx │ ├── NewOrder.jsx │ └── SignInToolbarText.jsx ├── index.css ├── main.jsx └── pages │ ├── About.jsx │ ├── Contact.jsx │ ├── Home.css │ ├── Home.jsx │ ├── NewOrderPage.jsx │ ├── NotFound.jsx │ └── SignIn.jsx └── vite.config.js /.aspire/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/.aspire/settings.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/.gitignore -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/LICENSE -------------------------------------------------------------------------------- /MyRestaurantApi.AppHost/AppHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi.AppHost/AppHost.cs -------------------------------------------------------------------------------- /MyRestaurantApi.AppHost/MyRestaurantApi.AppHost.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi.AppHost/MyRestaurantApi.AppHost.csproj -------------------------------------------------------------------------------- /MyRestaurantApi.AppHost/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi.AppHost/Properties/launchSettings.json -------------------------------------------------------------------------------- /MyRestaurantApi.AppHost/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi.AppHost/appsettings.Development.json -------------------------------------------------------------------------------- /MyRestaurantApi.AppHost/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi.AppHost/appsettings.json -------------------------------------------------------------------------------- /MyRestaurantApi.ServiceDefaults/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi.ServiceDefaults/Extensions.cs -------------------------------------------------------------------------------- /MyRestaurantApi.ServiceDefaults/MyRestaurantApi.ServiceDefaults.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi.ServiceDefaults/MyRestaurantApi.ServiceDefaults.csproj -------------------------------------------------------------------------------- /MyRestaurantApi.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi.sln -------------------------------------------------------------------------------- /MyRestaurantApi/.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi/.config/dotnet-tools.json -------------------------------------------------------------------------------- /MyRestaurantApi/Contact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi/Contact.cs -------------------------------------------------------------------------------- /MyRestaurantApi/ContactEndpoints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi/ContactEndpoints.cs -------------------------------------------------------------------------------- /MyRestaurantApi/Data/MyRestaurantApiContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi/Data/MyRestaurantApiContext.cs -------------------------------------------------------------------------------- /MyRestaurantApi/MenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi/MenuItem.cs -------------------------------------------------------------------------------- /MyRestaurantApi/MenuItemCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi/MenuItemCategory.cs -------------------------------------------------------------------------------- /MyRestaurantApi/MenuItemEndpoints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi/MenuItemEndpoints.cs -------------------------------------------------------------------------------- /MyRestaurantApi/MenuItemOrdered.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi/MenuItemOrdered.cs -------------------------------------------------------------------------------- /MyRestaurantApi/MenuItemOrderedEndpoints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi/MenuItemOrderedEndpoints.cs -------------------------------------------------------------------------------- /MyRestaurantApi/Migrations/20240830040043_sqlite_migration_675.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi/Migrations/20240830040043_sqlite_migration_675.Designer.cs -------------------------------------------------------------------------------- /MyRestaurantApi/Migrations/20240830040043_sqlite_migration_675.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi/Migrations/20240830040043_sqlite_migration_675.cs -------------------------------------------------------------------------------- /MyRestaurantApi/Migrations/MyRestaurantApiContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi/Migrations/MyRestaurantApiContextModelSnapshot.cs -------------------------------------------------------------------------------- /MyRestaurantApi/MyRestaurantApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi/MyRestaurantApi.csproj -------------------------------------------------------------------------------- /MyRestaurantApi/MyRestaurantApi.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi/MyRestaurantApi.http -------------------------------------------------------------------------------- /MyRestaurantApi/OrderStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi/OrderStatus.cs -------------------------------------------------------------------------------- /MyRestaurantApi/PaymentMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi/PaymentMethod.cs -------------------------------------------------------------------------------- /MyRestaurantApi/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi/Program.cs -------------------------------------------------------------------------------- /MyRestaurantApi/Properties/ServiceDependencies/MyRestaurantApi20240207171715 - Web Deploy/profile.arm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi/Properties/ServiceDependencies/MyRestaurantApi20240207171715 - Web Deploy/profile.arm.json -------------------------------------------------------------------------------- /MyRestaurantApi/Properties/ServiceDependencies/MyRestaurantApi20240806012442 - Web Deploy/profile.arm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi/Properties/ServiceDependencies/MyRestaurantApi20240806012442 - Web Deploy/profile.arm.json -------------------------------------------------------------------------------- /MyRestaurantApi/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi/Properties/launchSettings.json -------------------------------------------------------------------------------- /MyRestaurantApi/SampleRequests.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi/SampleRequests.http -------------------------------------------------------------------------------- /MyRestaurantApi/TogoOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi/TogoOrder.cs -------------------------------------------------------------------------------- /MyRestaurantApi/TogoOrderEndpoints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi/TogoOrderEndpoints.cs -------------------------------------------------------------------------------- /MyRestaurantApi/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi/appsettings.Development.json -------------------------------------------------------------------------------- /MyRestaurantApi/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi/appsettings.json -------------------------------------------------------------------------------- /MyRestaurantApi/auth.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi/auth.http -------------------------------------------------------------------------------- /MyRestaurantApi/demo.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi/demo.http -------------------------------------------------------------------------------- /MyRestaurantApi/dotnetconf.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi/dotnetconf.http -------------------------------------------------------------------------------- /MyRestaurantApi/http-client.env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi/http-client.env.json -------------------------------------------------------------------------------- /MyRestaurantApi/openapi-restaurant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi/openapi-restaurant.json -------------------------------------------------------------------------------- /MyRestaurantApi/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi/wwwroot/index.html -------------------------------------------------------------------------------- /MyRestaurantApi/wwwroot/swagger-ui/dark-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi/wwwroot/swagger-ui/dark-theme.css -------------------------------------------------------------------------------- /MyRestaurantApi/wwwroot/swagger-ui/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi/wwwroot/swagger-ui/favicon-16x16.png -------------------------------------------------------------------------------- /MyRestaurantApi/wwwroot/swagger-ui/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi/wwwroot/swagger-ui/favicon-32x32.png -------------------------------------------------------------------------------- /MyRestaurantApi/wwwroot/swagger-ui/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi/wwwroot/swagger-ui/index.css -------------------------------------------------------------------------------- /MyRestaurantApi/wwwroot/swagger-ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi/wwwroot/swagger-ui/index.html -------------------------------------------------------------------------------- /MyRestaurantApi/wwwroot/swagger-ui/oauth2-redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi/wwwroot/swagger-ui/oauth2-redirect.html -------------------------------------------------------------------------------- /MyRestaurantApi/wwwroot/swagger-ui/swagger-initializer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi/wwwroot/swagger-ui/swagger-initializer.js -------------------------------------------------------------------------------- /MyRestaurantApi/wwwroot/swagger-ui/swagger-ui-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi/wwwroot/swagger-ui/swagger-ui-bundle.js -------------------------------------------------------------------------------- /MyRestaurantApi/wwwroot/swagger-ui/swagger-ui-bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi/wwwroot/swagger-ui/swagger-ui-bundle.js.map -------------------------------------------------------------------------------- /MyRestaurantApi/wwwroot/swagger-ui/swagger-ui-es-bundle-core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi/wwwroot/swagger-ui/swagger-ui-es-bundle-core.js -------------------------------------------------------------------------------- /MyRestaurantApi/wwwroot/swagger-ui/swagger-ui-es-bundle-core.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi/wwwroot/swagger-ui/swagger-ui-es-bundle-core.js.map -------------------------------------------------------------------------------- /MyRestaurantApi/wwwroot/swagger-ui/swagger-ui-es-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi/wwwroot/swagger-ui/swagger-ui-es-bundle.js -------------------------------------------------------------------------------- /MyRestaurantApi/wwwroot/swagger-ui/swagger-ui-es-bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi/wwwroot/swagger-ui/swagger-ui-es-bundle.js.map -------------------------------------------------------------------------------- /MyRestaurantApi/wwwroot/swagger-ui/swagger-ui-standalone-preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi/wwwroot/swagger-ui/swagger-ui-standalone-preset.js -------------------------------------------------------------------------------- /MyRestaurantApi/wwwroot/swagger-ui/swagger-ui-standalone-preset.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi/wwwroot/swagger-ui/swagger-ui-standalone-preset.js.map -------------------------------------------------------------------------------- /MyRestaurantApi/wwwroot/swagger-ui/swagger-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi/wwwroot/swagger-ui/swagger-ui.css -------------------------------------------------------------------------------- /MyRestaurantApi/wwwroot/swagger-ui/swagger-ui.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi/wwwroot/swagger-ui/swagger-ui.css.map -------------------------------------------------------------------------------- /MyRestaurantApi/wwwroot/swagger-ui/swagger-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi/wwwroot/swagger-ui/swagger-ui.js -------------------------------------------------------------------------------- /MyRestaurantApi/wwwroot/swagger-ui/swagger-ui.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/MyRestaurantApi/wwwroot/swagger-ui/swagger-ui.js.map -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/README.md -------------------------------------------------------------------------------- /RestaurantServiceMcp/ContactTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/RestaurantServiceMcp/ContactTool.cs -------------------------------------------------------------------------------- /RestaurantServiceMcp/EchoTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/RestaurantServiceMcp/EchoTool.cs -------------------------------------------------------------------------------- /RestaurantServiceMcp/MenuItemOrderedTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/RestaurantServiceMcp/MenuItemOrderedTool.cs -------------------------------------------------------------------------------- /RestaurantServiceMcp/MenuItemTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/RestaurantServiceMcp/MenuItemTool.cs -------------------------------------------------------------------------------- /RestaurantServiceMcp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/RestaurantServiceMcp/Program.cs -------------------------------------------------------------------------------- /RestaurantServiceMcp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/RestaurantServiceMcp/README.md -------------------------------------------------------------------------------- /RestaurantServiceMcp/RestaurantServiceMcp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/RestaurantServiceMcp/RestaurantServiceMcp.csproj -------------------------------------------------------------------------------- /RestaurantServiceMcp/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/RestaurantServiceMcp/Settings.cs -------------------------------------------------------------------------------- /RestaurantServiceMcp/TogoOrderTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/RestaurantServiceMcp/TogoOrderTool.cs -------------------------------------------------------------------------------- /RestaurantServiceMcp/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/RestaurantServiceMcp/appsettings.json -------------------------------------------------------------------------------- /media/menu-items/cheeseburger-and-fries1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/media/menu-items/cheeseburger-and-fries1.webp -------------------------------------------------------------------------------- /media/menu-items/cheeseburger-and-fries2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/media/menu-items/cheeseburger-and-fries2.webp -------------------------------------------------------------------------------- /media/menu-items/chicken-and-waffle.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/media/menu-items/chicken-and-waffle.webp -------------------------------------------------------------------------------- /media/menu-items/country-fried-steak.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/media/menu-items/country-fried-steak.webp -------------------------------------------------------------------------------- /media/menu-items/fish-and-chips.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/media/menu-items/fish-and-chips.webp -------------------------------------------------------------------------------- /media/readme-vs-connected-services.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/media/readme-vs-connected-services.png -------------------------------------------------------------------------------- /media/readme-vs-cs-update-database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/media/readme-vs-cs-update-database.png -------------------------------------------------------------------------------- /media/restaurant-interior-01.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/media/restaurant-interior-01.webp -------------------------------------------------------------------------------- /media/the-cozy-plate-logo.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/media/the-cozy-plate-logo.pptx -------------------------------------------------------------------------------- /media/the-cozy-plate-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/media/the-cozy-plate-logo.svg -------------------------------------------------------------------------------- /restaurantweb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/restaurantweb/.gitignore -------------------------------------------------------------------------------- /restaurantweb/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/restaurantweb/CHANGELOG.md -------------------------------------------------------------------------------- /restaurantweb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/restaurantweb/README.md -------------------------------------------------------------------------------- /restaurantweb/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/restaurantweb/eslint.config.js -------------------------------------------------------------------------------- /restaurantweb/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/restaurantweb/index.html -------------------------------------------------------------------------------- /restaurantweb/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/restaurantweb/package-lock.json -------------------------------------------------------------------------------- /restaurantweb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/restaurantweb/package.json -------------------------------------------------------------------------------- /restaurantweb/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/restaurantweb/public/favicon.svg -------------------------------------------------------------------------------- /restaurantweb/public/restaurant-interior-01.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/restaurantweb/public/restaurant-interior-01.webp -------------------------------------------------------------------------------- /restaurantweb/public/the-cozy-plate-logo-with-background-color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/restaurantweb/public/the-cozy-plate-logo-with-background-color.svg -------------------------------------------------------------------------------- /restaurantweb/public/the-cozy-plate-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/restaurantweb/public/the-cozy-plate-logo.svg -------------------------------------------------------------------------------- /restaurantweb/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/restaurantweb/public/vite.svg -------------------------------------------------------------------------------- /restaurantweb/restaurantweb.esproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/restaurantweb/restaurantweb.esproj -------------------------------------------------------------------------------- /restaurantweb/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/restaurantweb/src/App.css -------------------------------------------------------------------------------- /restaurantweb/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/restaurantweb/src/App.jsx -------------------------------------------------------------------------------- /restaurantweb/src/Layout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/restaurantweb/src/Layout.jsx -------------------------------------------------------------------------------- /restaurantweb/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/restaurantweb/src/assets/react.svg -------------------------------------------------------------------------------- /restaurantweb/src/components/CustomerInfo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/restaurantweb/src/components/CustomerInfo.css -------------------------------------------------------------------------------- /restaurantweb/src/components/CustomerInfo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/restaurantweb/src/components/CustomerInfo.jsx -------------------------------------------------------------------------------- /restaurantweb/src/components/Menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/restaurantweb/src/components/Menu.css -------------------------------------------------------------------------------- /restaurantweb/src/components/Menu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/restaurantweb/src/components/Menu.jsx -------------------------------------------------------------------------------- /restaurantweb/src/components/MenuItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/restaurantweb/src/components/MenuItem.jsx -------------------------------------------------------------------------------- /restaurantweb/src/components/Navigation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/restaurantweb/src/components/Navigation.css -------------------------------------------------------------------------------- /restaurantweb/src/components/Navigation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/restaurantweb/src/components/Navigation.jsx -------------------------------------------------------------------------------- /restaurantweb/src/components/NewOrder.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/restaurantweb/src/components/NewOrder.jsx -------------------------------------------------------------------------------- /restaurantweb/src/components/SignInToolbarText.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/restaurantweb/src/components/SignInToolbarText.jsx -------------------------------------------------------------------------------- /restaurantweb/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/restaurantweb/src/index.css -------------------------------------------------------------------------------- /restaurantweb/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/restaurantweb/src/main.jsx -------------------------------------------------------------------------------- /restaurantweb/src/pages/About.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/restaurantweb/src/pages/About.jsx -------------------------------------------------------------------------------- /restaurantweb/src/pages/Contact.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/restaurantweb/src/pages/Contact.jsx -------------------------------------------------------------------------------- /restaurantweb/src/pages/Home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/restaurantweb/src/pages/Home.css -------------------------------------------------------------------------------- /restaurantweb/src/pages/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/restaurantweb/src/pages/Home.jsx -------------------------------------------------------------------------------- /restaurantweb/src/pages/NewOrderPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/restaurantweb/src/pages/NewOrderPage.jsx -------------------------------------------------------------------------------- /restaurantweb/src/pages/NotFound.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/restaurantweb/src/pages/NotFound.jsx -------------------------------------------------------------------------------- /restaurantweb/src/pages/SignIn.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/restaurantweb/src/pages/SignIn.jsx -------------------------------------------------------------------------------- /restaurantweb/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayedihashimi/RestaurantService/HEAD/restaurantweb/vite.config.js --------------------------------------------------------------------------------