├── .gitattributes ├── .gitignore ├── FoodDelivery.Core ├── Extensions │ └── SeoExtensions.cs └── FoodDelivery.Core.csproj ├── FoodDelivery.Data ├── Entities │ ├── BaseEntity.cs │ ├── Foods │ │ ├── Food.cs │ │ ├── FoodType.cs │ │ └── ViewModels │ │ │ └── FoodListingViewModel.cs │ ├── Restaurants │ │ └── Restaurant.cs │ ├── Reviews │ │ └── Review.cs │ └── ShoppingCarts │ │ ├── Dto │ │ └── ShoppingCartDto.cs │ │ ├── ShoppingCart.cs │ │ ├── ShoppingCartItems.cs │ │ └── ViewModels │ │ ├── ShoppingCartItemViewModel.cs │ │ └── ShoppingCartViewModel.cs └── FoodDelivery.Data.csproj ├── FoodDelivery.Repository ├── ApplicationDbContext.cs ├── FoodDelivery.Repository.csproj ├── IRepository.cs └── Repository.cs ├── FoodDelivery.Service ├── FoodDelivery.Service.csproj └── Foods │ ├── FoodService.cs │ ├── FoodTypeService.cs │ ├── IFoodService.cs │ └── IFoodTypeService.cs ├── FoodDelivery.sln ├── FoodDelivery ├── Controllers │ ├── Api │ │ └── FoodsController.cs │ ├── BaseController.cs │ ├── FoodsController.cs │ ├── HomeController.cs │ └── ShoppingCartController.cs ├── FoodDelivery.csproj ├── Migrations │ ├── 20180930100703_InitialCreate.Designer.cs │ ├── 20180930100703_InitialCreate.cs │ ├── 20181007141328_AddFoodTypesData.Designer.cs │ ├── 20181007141328_AddFoodTypesData.cs │ ├── 20181110142416_ChangePriceColumnTypeInFoodTable.Designer.cs │ ├── 20181110142416_ChangePriceColumnTypeInFoodTable.cs │ ├── 20181120143745_AddedMoreFoods.Designer.cs │ ├── 20181120143745_AddedMoreFoods.cs │ └── ApplicationDbContextModelSnapshot.cs ├── Models │ └── ErrorViewModel.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.cs ├── TagHelpers │ └── FoodTypeSideBarTagHelper.cs ├── Views │ ├── Foods │ │ ├── Details.cshtml │ │ ├── FoodsByType.cshtml │ │ └── Index.cshtml │ ├── Home │ │ ├── About.cshtml │ │ └── Index.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _CookieConsentPartial.cshtml │ │ ├── _Layout.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── ShoppingCart │ │ └── Index.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── appsettings.Development.json ├── appsettings.json ├── bundleconfig.json ├── compilerconfig.json ├── compilerconfig.json.defaults ├── libman.json └── wwwroot │ ├── css │ ├── font-awesome.min.css │ ├── site.css │ ├── site.min.css │ └── site.scss │ ├── favicon.ico │ ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 │ ├── images │ ├── appetizer-bowl-breakfast-280018.jpg │ ├── appetizer-chicken-chicken-dippers-1059943.jpg │ ├── appetizer-close-up-cucumber-406152.jpg │ ├── asian-food-bowl-cuisine-699953.jpg │ ├── bakery-baking-blueberries-291528.jpg │ ├── banner1.svg │ ├── banner2.svg │ ├── banner3.svg │ ├── barbecue-bbq-cooking-111131.jpg │ ├── basil-close-up-cooking-725997.jpg │ ├── beef-bread-burger-156114.jpg │ ├── blur-breakfast-close-up-376464.jpg │ ├── bowl-cooking-cuisine-698549.jpg │ ├── bread-breakfast-bun-461382.jpg │ ├── breakfast-chocolate-cream-264727.jpg │ ├── burrito-chicken-close-up-461198.jpg │ ├── cheese-close-up-crust-1146760.jpg │ ├── chicken-chips-delicious-7782.jpg │ ├── chicken-close-up-crispy-60616.jpg │ ├── chicken-dinner-dish-236781.jpg │ ├── chopsticks-cuisine-dinner-46247.jpg │ ├── close-up-cooking-dinner-46239.jpg │ ├── cream-dessert-glass-8382.jpg │ └── egg-food-fried-rice-53121 (1).jpg │ ├── js │ ├── bootstrap-notify.min.js │ ├── site.js │ └── site.min.js │ └── lib │ ├── bootstrap │ ├── .bower.json │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js │ ├── jquery-validation-unobtrusive │ ├── .bower.json │ ├── LICENSE.txt │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── .bower.json │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── .bower.json │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/.gitignore -------------------------------------------------------------------------------- /FoodDelivery.Core/Extensions/SeoExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery.Core/Extensions/SeoExtensions.cs -------------------------------------------------------------------------------- /FoodDelivery.Core/FoodDelivery.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery.Core/FoodDelivery.Core.csproj -------------------------------------------------------------------------------- /FoodDelivery.Data/Entities/BaseEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery.Data/Entities/BaseEntity.cs -------------------------------------------------------------------------------- /FoodDelivery.Data/Entities/Foods/Food.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery.Data/Entities/Foods/Food.cs -------------------------------------------------------------------------------- /FoodDelivery.Data/Entities/Foods/FoodType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery.Data/Entities/Foods/FoodType.cs -------------------------------------------------------------------------------- /FoodDelivery.Data/Entities/Foods/ViewModels/FoodListingViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery.Data/Entities/Foods/ViewModels/FoodListingViewModel.cs -------------------------------------------------------------------------------- /FoodDelivery.Data/Entities/Restaurants/Restaurant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery.Data/Entities/Restaurants/Restaurant.cs -------------------------------------------------------------------------------- /FoodDelivery.Data/Entities/Reviews/Review.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery.Data/Entities/Reviews/Review.cs -------------------------------------------------------------------------------- /FoodDelivery.Data/Entities/ShoppingCarts/Dto/ShoppingCartDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery.Data/Entities/ShoppingCarts/Dto/ShoppingCartDto.cs -------------------------------------------------------------------------------- /FoodDelivery.Data/Entities/ShoppingCarts/ShoppingCart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery.Data/Entities/ShoppingCarts/ShoppingCart.cs -------------------------------------------------------------------------------- /FoodDelivery.Data/Entities/ShoppingCarts/ShoppingCartItems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery.Data/Entities/ShoppingCarts/ShoppingCartItems.cs -------------------------------------------------------------------------------- /FoodDelivery.Data/Entities/ShoppingCarts/ViewModels/ShoppingCartItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery.Data/Entities/ShoppingCarts/ViewModels/ShoppingCartItemViewModel.cs -------------------------------------------------------------------------------- /FoodDelivery.Data/Entities/ShoppingCarts/ViewModels/ShoppingCartViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery.Data/Entities/ShoppingCarts/ViewModels/ShoppingCartViewModel.cs -------------------------------------------------------------------------------- /FoodDelivery.Data/FoodDelivery.Data.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery.Data/FoodDelivery.Data.csproj -------------------------------------------------------------------------------- /FoodDelivery.Repository/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery.Repository/ApplicationDbContext.cs -------------------------------------------------------------------------------- /FoodDelivery.Repository/FoodDelivery.Repository.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery.Repository/FoodDelivery.Repository.csproj -------------------------------------------------------------------------------- /FoodDelivery.Repository/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery.Repository/IRepository.cs -------------------------------------------------------------------------------- /FoodDelivery.Repository/Repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery.Repository/Repository.cs -------------------------------------------------------------------------------- /FoodDelivery.Service/FoodDelivery.Service.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery.Service/FoodDelivery.Service.csproj -------------------------------------------------------------------------------- /FoodDelivery.Service/Foods/FoodService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery.Service/Foods/FoodService.cs -------------------------------------------------------------------------------- /FoodDelivery.Service/Foods/FoodTypeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery.Service/Foods/FoodTypeService.cs -------------------------------------------------------------------------------- /FoodDelivery.Service/Foods/IFoodService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery.Service/Foods/IFoodService.cs -------------------------------------------------------------------------------- /FoodDelivery.Service/Foods/IFoodTypeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery.Service/Foods/IFoodTypeService.cs -------------------------------------------------------------------------------- /FoodDelivery.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery.sln -------------------------------------------------------------------------------- /FoodDelivery/Controllers/Api/FoodsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/Controllers/Api/FoodsController.cs -------------------------------------------------------------------------------- /FoodDelivery/Controllers/BaseController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/Controllers/BaseController.cs -------------------------------------------------------------------------------- /FoodDelivery/Controllers/FoodsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/Controllers/FoodsController.cs -------------------------------------------------------------------------------- /FoodDelivery/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/Controllers/HomeController.cs -------------------------------------------------------------------------------- /FoodDelivery/Controllers/ShoppingCartController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/Controllers/ShoppingCartController.cs -------------------------------------------------------------------------------- /FoodDelivery/FoodDelivery.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/FoodDelivery.csproj -------------------------------------------------------------------------------- /FoodDelivery/Migrations/20180930100703_InitialCreate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/Migrations/20180930100703_InitialCreate.Designer.cs -------------------------------------------------------------------------------- /FoodDelivery/Migrations/20180930100703_InitialCreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/Migrations/20180930100703_InitialCreate.cs -------------------------------------------------------------------------------- /FoodDelivery/Migrations/20181007141328_AddFoodTypesData.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/Migrations/20181007141328_AddFoodTypesData.Designer.cs -------------------------------------------------------------------------------- /FoodDelivery/Migrations/20181007141328_AddFoodTypesData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/Migrations/20181007141328_AddFoodTypesData.cs -------------------------------------------------------------------------------- /FoodDelivery/Migrations/20181110142416_ChangePriceColumnTypeInFoodTable.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/Migrations/20181110142416_ChangePriceColumnTypeInFoodTable.Designer.cs -------------------------------------------------------------------------------- /FoodDelivery/Migrations/20181110142416_ChangePriceColumnTypeInFoodTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/Migrations/20181110142416_ChangePriceColumnTypeInFoodTable.cs -------------------------------------------------------------------------------- /FoodDelivery/Migrations/20181120143745_AddedMoreFoods.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/Migrations/20181120143745_AddedMoreFoods.Designer.cs -------------------------------------------------------------------------------- /FoodDelivery/Migrations/20181120143745_AddedMoreFoods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/Migrations/20181120143745_AddedMoreFoods.cs -------------------------------------------------------------------------------- /FoodDelivery/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /FoodDelivery/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /FoodDelivery/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/Program.cs -------------------------------------------------------------------------------- /FoodDelivery/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/Properties/launchSettings.json -------------------------------------------------------------------------------- /FoodDelivery/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/Startup.cs -------------------------------------------------------------------------------- /FoodDelivery/TagHelpers/FoodTypeSideBarTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/TagHelpers/FoodTypeSideBarTagHelper.cs -------------------------------------------------------------------------------- /FoodDelivery/Views/Foods/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/Views/Foods/Details.cshtml -------------------------------------------------------------------------------- /FoodDelivery/Views/Foods/FoodsByType.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/Views/Foods/FoodsByType.cshtml -------------------------------------------------------------------------------- /FoodDelivery/Views/Foods/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/Views/Foods/Index.cshtml -------------------------------------------------------------------------------- /FoodDelivery/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/Views/Home/About.cshtml -------------------------------------------------------------------------------- /FoodDelivery/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /FoodDelivery/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /FoodDelivery/Views/Shared/_CookieConsentPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/Views/Shared/_CookieConsentPartial.cshtml -------------------------------------------------------------------------------- /FoodDelivery/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /FoodDelivery/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /FoodDelivery/Views/ShoppingCart/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/Views/ShoppingCart/Index.cshtml -------------------------------------------------------------------------------- /FoodDelivery/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /FoodDelivery/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /FoodDelivery/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/appsettings.Development.json -------------------------------------------------------------------------------- /FoodDelivery/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/appsettings.json -------------------------------------------------------------------------------- /FoodDelivery/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/bundleconfig.json -------------------------------------------------------------------------------- /FoodDelivery/compilerconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/compilerconfig.json -------------------------------------------------------------------------------- /FoodDelivery/compilerconfig.json.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/compilerconfig.json.defaults -------------------------------------------------------------------------------- /FoodDelivery/libman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/libman.json -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/css/font-awesome.min.css -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/css/site.css -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/css/site.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/css/site.scss -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/favicon.ico -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/images/appetizer-bowl-breakfast-280018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/images/appetizer-bowl-breakfast-280018.jpg -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/images/appetizer-chicken-chicken-dippers-1059943.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/images/appetizer-chicken-chicken-dippers-1059943.jpg -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/images/appetizer-close-up-cucumber-406152.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/images/appetizer-close-up-cucumber-406152.jpg -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/images/asian-food-bowl-cuisine-699953.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/images/asian-food-bowl-cuisine-699953.jpg -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/images/bakery-baking-blueberries-291528.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/images/bakery-baking-blueberries-291528.jpg -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/images/barbecue-bbq-cooking-111131.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/images/barbecue-bbq-cooking-111131.jpg -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/images/basil-close-up-cooking-725997.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/images/basil-close-up-cooking-725997.jpg -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/images/beef-bread-burger-156114.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/images/beef-bread-burger-156114.jpg -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/images/blur-breakfast-close-up-376464.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/images/blur-breakfast-close-up-376464.jpg -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/images/bowl-cooking-cuisine-698549.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/images/bowl-cooking-cuisine-698549.jpg -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/images/bread-breakfast-bun-461382.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/images/bread-breakfast-bun-461382.jpg -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/images/breakfast-chocolate-cream-264727.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/images/breakfast-chocolate-cream-264727.jpg -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/images/burrito-chicken-close-up-461198.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/images/burrito-chicken-close-up-461198.jpg -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/images/cheese-close-up-crust-1146760.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/images/cheese-close-up-crust-1146760.jpg -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/images/chicken-chips-delicious-7782.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/images/chicken-chips-delicious-7782.jpg -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/images/chicken-close-up-crispy-60616.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/images/chicken-close-up-crispy-60616.jpg -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/images/chicken-dinner-dish-236781.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/images/chicken-dinner-dish-236781.jpg -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/images/chopsticks-cuisine-dinner-46247.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/images/chopsticks-cuisine-dinner-46247.jpg -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/images/close-up-cooking-dinner-46239.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/images/close-up-cooking-dinner-46239.jpg -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/images/cream-dessert-glass-8382.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/images/cream-dessert-glass-8382.jpg -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/images/egg-food-fried-rice-53121 (1).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/images/egg-food-fried-rice-53121 (1).jpg -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/js/bootstrap-notify.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/js/bootstrap-notify.min.js -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/js/site.js -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/js/site.min.js -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /FoodDelivery/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/FoodDelivery/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinlimcode/FoodDelivery/HEAD/README.md --------------------------------------------------------------------------------