├── .gitattributes ├── .gitignore ├── BookShoppingCartMvc.sln ├── BookShoppingCartMvcUI ├── Areas │ └── Identity │ │ └── Pages │ │ ├── Account │ │ ├── AccessDenied.cshtml │ │ ├── AccessDenied.cshtml.cs │ │ ├── ConfirmEmail.cshtml │ │ ├── ConfirmEmail.cshtml.cs │ │ ├── ConfirmEmailChange.cshtml │ │ ├── ConfirmEmailChange.cshtml.cs │ │ ├── ExternalLogin.cshtml │ │ ├── ExternalLogin.cshtml.cs │ │ ├── ForgotPassword.cshtml │ │ ├── ForgotPassword.cshtml.cs │ │ ├── ForgotPasswordConfirmation.cshtml │ │ ├── ForgotPasswordConfirmation.cshtml.cs │ │ ├── Lockout.cshtml │ │ ├── Lockout.cshtml.cs │ │ ├── Login.cshtml │ │ ├── Login.cshtml.cs │ │ ├── LoginWith2fa.cshtml │ │ ├── LoginWith2fa.cshtml.cs │ │ ├── LoginWithRecoveryCode.cshtml │ │ ├── LoginWithRecoveryCode.cshtml.cs │ │ ├── Logout.cshtml │ │ ├── Logout.cshtml.cs │ │ ├── Manage │ │ │ ├── ChangePassword.cshtml │ │ │ ├── ChangePassword.cshtml.cs │ │ │ ├── DeletePersonalData.cshtml │ │ │ ├── DeletePersonalData.cshtml.cs │ │ │ ├── Disable2fa.cshtml │ │ │ ├── Disable2fa.cshtml.cs │ │ │ ├── DownloadPersonalData.cshtml │ │ │ ├── DownloadPersonalData.cshtml.cs │ │ │ ├── Email.cshtml │ │ │ ├── Email.cshtml.cs │ │ │ ├── EnableAuthenticator.cshtml │ │ │ ├── EnableAuthenticator.cshtml.cs │ │ │ ├── ExternalLogins.cshtml │ │ │ ├── ExternalLogins.cshtml.cs │ │ │ ├── GenerateRecoveryCodes.cshtml │ │ │ ├── GenerateRecoveryCodes.cshtml.cs │ │ │ ├── Index.cshtml │ │ │ ├── Index.cshtml.cs │ │ │ ├── ManageNavPages.cs │ │ │ ├── PersonalData.cshtml │ │ │ ├── PersonalData.cshtml.cs │ │ │ ├── ResetAuthenticator.cshtml │ │ │ ├── ResetAuthenticator.cshtml.cs │ │ │ ├── SetPassword.cshtml │ │ │ ├── SetPassword.cshtml.cs │ │ │ ├── ShowRecoveryCodes.cshtml │ │ │ ├── ShowRecoveryCodes.cshtml.cs │ │ │ ├── TwoFactorAuthentication.cshtml │ │ │ ├── TwoFactorAuthentication.cshtml.cs │ │ │ ├── _Layout.cshtml │ │ │ ├── _ManageNav.cshtml │ │ │ ├── _StatusMessage.cshtml │ │ │ └── _ViewImports.cshtml │ │ ├── Register.cshtml │ │ ├── Register.cshtml.cs │ │ ├── RegisterConfirmation.cshtml │ │ ├── RegisterConfirmation.cshtml.cs │ │ ├── ResendEmailConfirmation.cshtml │ │ ├── ResendEmailConfirmation.cshtml.cs │ │ ├── ResetPassword.cshtml │ │ ├── ResetPassword.cshtml.cs │ │ ├── ResetPasswordConfirmation.cshtml │ │ ├── ResetPasswordConfirmation.cshtml.cs │ │ ├── _StatusMessage.cshtml │ │ └── _ViewImports.cshtml │ │ ├── Error.cshtml │ │ ├── Error.cshtml.cs │ │ ├── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml ├── BookShoppingCartMvcUI.csproj ├── Constants │ ├── PaymentMethods.cs │ └── Roles.cs ├── Controllers │ ├── AdminOperationsController.cs │ ├── BookController.cs │ ├── CartController.cs │ ├── GenreController.cs │ ├── HomeController.cs │ ├── ReportsController.cs │ ├── StockController.cs │ └── UserOrderController.cs ├── Data │ ├── ApplicationDbContext.cs │ └── DbSeeder.cs ├── GlobalUsings.cs ├── Migrations │ ├── 20240403102550_init.Designer.cs │ ├── 20240403102550_init.cs │ ├── 20240403111538_mig2.Designer.cs │ ├── 20240403111538_mig2.cs │ ├── 20240403113215_mig3.Designer.cs │ ├── 20240403113215_mig3.cs │ ├── 20240426055110_mig-stock-mgt.Designer.cs │ ├── 20240426055110_mig-stock-mgt.cs │ ├── 20250213151544_TopNSellingBooksStoredProcedure.Designer.cs │ ├── 20250213151544_TopNSellingBooksStoredProcedure.cs │ └── ApplicationDbContextModelSnapshot.cs ├── Models │ ├── Book.cs │ ├── CartDetail.cs │ ├── DTOs │ │ ├── BookDTO.cs │ │ ├── BookDisplayModel.cs │ │ ├── CheckoutModel.cs │ │ ├── GenreDTO.cs │ │ ├── OrderDetailModalDTO.cs │ │ ├── StockDTO.cs │ │ ├── StockDisplayModel.cs │ │ ├── TopNSoldBookModels.cs │ │ └── UpdateOrderStatusModel.cs │ ├── ErrorViewModel.cs │ ├── Genre.cs │ ├── Order.cs │ ├── OrderDetail.cs │ ├── OrderStatus.cs │ ├── ShoppingCart.cs │ └── Stock.cs ├── Program.cs ├── Properties │ ├── launchSettings.json │ ├── serviceDependencies.json │ └── serviceDependencies.local.json ├── Repositories │ ├── BookRepository.cs │ ├── CartRepository.cs │ ├── GenreRepository.cs │ ├── HomeRepository.cs │ ├── ICartRepository.cs │ ├── IHomeRepository.cs │ ├── IUserOrderRepository.cs │ ├── ReportRepository.cs │ ├── StockRepository.cs │ └── UserOrderRepository.cs ├── Shared │ └── FileService.cs ├── Views │ ├── AdminOperations │ │ ├── AllOrders.cshtml │ │ ├── Dashboard.cshtml │ │ ├── UpdateOrderStatus.cshtml │ │ └── _OrderDetailModal.cshtml │ ├── Book │ │ ├── AddBook.cshtml │ │ ├── Index.cshtml │ │ └── UpdateBook.cshtml │ ├── Cart │ │ ├── Checkout.cshtml │ │ ├── GetUserCart.cshtml │ │ ├── OrderFailure.cshtml │ │ └── OrderSuccess.cshtml │ ├── Genre │ │ ├── AddGenre.cshtml │ │ ├── Index.cshtml │ │ └── UpdateGenre.cshtml │ ├── Home │ │ ├── Index.cshtml │ │ └── Privacy.cshtml │ ├── Reports │ │ └── TopFiveSellingBooks.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _AdminLayout.cshtml │ │ ├── _AdminLayout.cshtml.css │ │ ├── _Layout.cshtml │ │ ├── _Layout.cshtml.css │ │ ├── _LoginPartial.cshtml │ │ ├── _Notifications.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── Stock │ │ ├── Index.cshtml │ │ └── ManangeStock.cshtml │ ├── UserOrder │ │ └── UserOrders.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── appsettings.Development.json ├── appsettings.json └── wwwroot │ ├── css │ └── bootstrap.min.css │ ├── favicon.ico │ └── images │ ├── NoImage.png │ └── hobbit.jfif ├── Dockerfile ├── README.md ├── compose.yaml └── screenshots ├── 1.jpg ├── 10 admin dashboard.jpg ├── 11 admin orders.jpg ├── 12 admin order detail.jpg ├── 13 Update Order Status.jpg ├── 14 display stock.jpg ├── 15 update stock.jpg ├── 16 display genres.jpg ├── 17 add genre.jpg ├── 18 Update Genre.jpg ├── 19 display books.jpg ├── 2.jpg ├── 20 add books.jpg ├── 21 update book.jpg ├── 22 top selling books.jpg ├── 3.jpg ├── 4.jpg ├── 5.jpg ├── 6.jpg ├── 7.jpg ├── 8_order_success.jpg └── 9_admin_login.jpg /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/.gitignore -------------------------------------------------------------------------------- /BookShoppingCartMvc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvc.sln -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/AccessDenied.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/AccessDenied.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/AccessDenied.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/AccessDenied.cshtml.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/ConfirmEmail.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/ConfirmEmail.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/ConfirmEmail.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/ConfirmEmail.cshtml.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/ConfirmEmailChange.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/ConfirmEmailChange.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/ConfirmEmailChange.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/ConfirmEmailChange.cshtml.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/ExternalLogin.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/ExternalLogin.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/ExternalLogin.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/ExternalLogin.cshtml.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/ForgotPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/ForgotPassword.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/ForgotPassword.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/ForgotPassword.cshtml.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/ForgotPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/ForgotPasswordConfirmation.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/ForgotPasswordConfirmation.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/ForgotPasswordConfirmation.cshtml.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Lockout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Lockout.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Lockout.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Lockout.cshtml.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Login.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Login.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Login.cshtml.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/LoginWith2fa.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/LoginWith2fa.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/LoginWith2fa.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/LoginWith2fa.cshtml.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/LoginWithRecoveryCode.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/LoginWithRecoveryCode.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/LoginWithRecoveryCode.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/LoginWithRecoveryCode.cshtml.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Logout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Logout.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Logout.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Logout.cshtml.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/ChangePassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/ChangePassword.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/ChangePassword.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/ChangePassword.cshtml.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/DeletePersonalData.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/DeletePersonalData.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/DeletePersonalData.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/DeletePersonalData.cshtml.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/Disable2fa.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/Disable2fa.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/Disable2fa.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/Disable2fa.cshtml.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/DownloadPersonalData.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/DownloadPersonalData.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/DownloadPersonalData.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/DownloadPersonalData.cshtml.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/Email.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/Email.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/Email.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/Email.cshtml.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/EnableAuthenticator.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/EnableAuthenticator.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/EnableAuthenticator.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/EnableAuthenticator.cshtml.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/ExternalLogins.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/ExternalLogins.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/ExternalLogins.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/ExternalLogins.cshtml.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/GenerateRecoveryCodes.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/GenerateRecoveryCodes.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/GenerateRecoveryCodes.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/GenerateRecoveryCodes.cshtml.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/Index.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/Index.cshtml.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/ManageNavPages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/ManageNavPages.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/PersonalData.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/PersonalData.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/PersonalData.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/PersonalData.cshtml.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/ResetAuthenticator.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/ResetAuthenticator.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/ResetAuthenticator.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/ResetAuthenticator.cshtml.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/SetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/SetPassword.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/SetPassword.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/SetPassword.cshtml.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/ShowRecoveryCodes.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/ShowRecoveryCodes.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/ShowRecoveryCodes.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/ShowRecoveryCodes.cshtml.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/TwoFactorAuthentication.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/TwoFactorAuthentication.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/TwoFactorAuthentication.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/TwoFactorAuthentication.cshtml.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/_Layout.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/_ManageNav.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/_ManageNav.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/_StatusMessage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/_StatusMessage.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Manage/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using BookShoppingCartMvcUI.Areas.Identity.Pages.Account.Manage -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Register.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Register.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/Register.cshtml.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/RegisterConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/RegisterConfirmation.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/RegisterConfirmation.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/RegisterConfirmation.cshtml.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/ResendEmailConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/ResendEmailConfirmation.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/ResendEmailConfirmation.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/ResendEmailConfirmation.cshtml.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/ResetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/ResetPassword.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/ResetPassword.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/ResetPassword.cshtml.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/ResetPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/ResetPasswordConfirmation.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/ResetPasswordConfirmation.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/ResetPasswordConfirmation.cshtml.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/_StatusMessage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Account/_StatusMessage.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Account/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using BookShoppingCartMvcUI.Areas.Identity.Pages.Account -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Error.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Areas/Identity/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Areas/Identity/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/BookShoppingCartMvcUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/BookShoppingCartMvcUI.csproj -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Constants/PaymentMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Constants/PaymentMethods.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Constants/Roles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Constants/Roles.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Controllers/AdminOperationsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Controllers/AdminOperationsController.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Controllers/BookController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Controllers/BookController.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Controllers/CartController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Controllers/CartController.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Controllers/GenreController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Controllers/GenreController.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Controllers/HomeController.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Controllers/ReportsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Controllers/ReportsController.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Controllers/StockController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Controllers/StockController.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Controllers/UserOrderController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Controllers/UserOrderController.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Data/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Data/ApplicationDbContext.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Data/DbSeeder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Data/DbSeeder.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/GlobalUsings.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Migrations/20240403102550_init.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Migrations/20240403102550_init.Designer.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Migrations/20240403102550_init.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Migrations/20240403102550_init.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Migrations/20240403111538_mig2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Migrations/20240403111538_mig2.Designer.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Migrations/20240403111538_mig2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Migrations/20240403111538_mig2.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Migrations/20240403113215_mig3.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Migrations/20240403113215_mig3.Designer.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Migrations/20240403113215_mig3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Migrations/20240403113215_mig3.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Migrations/20240426055110_mig-stock-mgt.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Migrations/20240426055110_mig-stock-mgt.Designer.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Migrations/20240426055110_mig-stock-mgt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Migrations/20240426055110_mig-stock-mgt.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Migrations/20250213151544_TopNSellingBooksStoredProcedure.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Migrations/20250213151544_TopNSellingBooksStoredProcedure.Designer.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Migrations/20250213151544_TopNSellingBooksStoredProcedure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Migrations/20250213151544_TopNSellingBooksStoredProcedure.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Models/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Models/Book.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Models/CartDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Models/CartDetail.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Models/DTOs/BookDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Models/DTOs/BookDTO.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Models/DTOs/BookDisplayModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Models/DTOs/BookDisplayModel.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Models/DTOs/CheckoutModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Models/DTOs/CheckoutModel.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Models/DTOs/GenreDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Models/DTOs/GenreDTO.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Models/DTOs/OrderDetailModalDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Models/DTOs/OrderDetailModalDTO.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Models/DTOs/StockDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Models/DTOs/StockDTO.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Models/DTOs/StockDisplayModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Models/DTOs/StockDisplayModel.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Models/DTOs/TopNSoldBookModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Models/DTOs/TopNSoldBookModels.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Models/DTOs/UpdateOrderStatusModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Models/DTOs/UpdateOrderStatusModel.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Models/Genre.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Models/Genre.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Models/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Models/Order.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Models/OrderDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Models/OrderDetail.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Models/OrderStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Models/OrderStatus.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Models/ShoppingCart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Models/ShoppingCart.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Models/Stock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Models/Stock.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Program.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Properties/launchSettings.json -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Properties/serviceDependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Properties/serviceDependencies.json -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Properties/serviceDependencies.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Properties/serviceDependencies.local.json -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Repositories/BookRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Repositories/BookRepository.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Repositories/CartRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Repositories/CartRepository.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Repositories/GenreRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Repositories/GenreRepository.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Repositories/HomeRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Repositories/HomeRepository.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Repositories/ICartRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Repositories/ICartRepository.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Repositories/IHomeRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Repositories/IHomeRepository.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Repositories/IUserOrderRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Repositories/IUserOrderRepository.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Repositories/ReportRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Repositories/ReportRepository.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Repositories/StockRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Repositories/StockRepository.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Repositories/UserOrderRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Repositories/UserOrderRepository.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Shared/FileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Shared/FileService.cs -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Views/AdminOperations/AllOrders.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Views/AdminOperations/AllOrders.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Views/AdminOperations/Dashboard.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Views/AdminOperations/Dashboard.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Views/AdminOperations/UpdateOrderStatus.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Views/AdminOperations/UpdateOrderStatus.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Views/AdminOperations/_OrderDetailModal.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Views/AdminOperations/_OrderDetailModal.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Views/Book/AddBook.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Views/Book/AddBook.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Views/Book/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Views/Book/Index.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Views/Book/UpdateBook.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Views/Book/UpdateBook.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Views/Cart/Checkout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Views/Cart/Checkout.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Views/Cart/GetUserCart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Views/Cart/GetUserCart.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Views/Cart/OrderFailure.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Views/Cart/OrderFailure.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Views/Cart/OrderSuccess.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Views/Cart/OrderSuccess.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Views/Genre/AddGenre.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Views/Genre/AddGenre.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Views/Genre/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Views/Genre/Index.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Views/Genre/UpdateGenre.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Views/Genre/UpdateGenre.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Views/Reports/TopFiveSellingBooks.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Views/Reports/TopFiveSellingBooks.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Views/Shared/_AdminLayout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Views/Shared/_AdminLayout.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Views/Shared/_AdminLayout.cshtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Views/Shared/_AdminLayout.cshtml.css -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Views/Shared/_Layout.cshtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Views/Shared/_Layout.cshtml.css -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Views/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Views/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Views/Shared/_Notifications.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Views/Shared/_Notifications.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Views/Stock/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Views/Stock/Index.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Views/Stock/ManangeStock.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Views/Stock/ManangeStock.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Views/UserOrder/UserOrders.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Views/UserOrder/UserOrders.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/appsettings.Development.json -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/appsettings.json -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/wwwroot/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/wwwroot/css/bootstrap.min.css -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/wwwroot/favicon.ico -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/wwwroot/images/NoImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/wwwroot/images/NoImage.png -------------------------------------------------------------------------------- /BookShoppingCartMvcUI/wwwroot/images/hobbit.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/BookShoppingCartMvcUI/wwwroot/images/hobbit.jfif -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/README.md -------------------------------------------------------------------------------- /compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/compose.yaml -------------------------------------------------------------------------------- /screenshots/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/screenshots/1.jpg -------------------------------------------------------------------------------- /screenshots/10 admin dashboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/screenshots/10 admin dashboard.jpg -------------------------------------------------------------------------------- /screenshots/11 admin orders.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/screenshots/11 admin orders.jpg -------------------------------------------------------------------------------- /screenshots/12 admin order detail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/screenshots/12 admin order detail.jpg -------------------------------------------------------------------------------- /screenshots/13 Update Order Status.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/screenshots/13 Update Order Status.jpg -------------------------------------------------------------------------------- /screenshots/14 display stock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/screenshots/14 display stock.jpg -------------------------------------------------------------------------------- /screenshots/15 update stock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/screenshots/15 update stock.jpg -------------------------------------------------------------------------------- /screenshots/16 display genres.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/screenshots/16 display genres.jpg -------------------------------------------------------------------------------- /screenshots/17 add genre.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/screenshots/17 add genre.jpg -------------------------------------------------------------------------------- /screenshots/18 Update Genre.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/screenshots/18 Update Genre.jpg -------------------------------------------------------------------------------- /screenshots/19 display books.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/screenshots/19 display books.jpg -------------------------------------------------------------------------------- /screenshots/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/screenshots/2.jpg -------------------------------------------------------------------------------- /screenshots/20 add books.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/screenshots/20 add books.jpg -------------------------------------------------------------------------------- /screenshots/21 update book.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/screenshots/21 update book.jpg -------------------------------------------------------------------------------- /screenshots/22 top selling books.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/screenshots/22 top selling books.jpg -------------------------------------------------------------------------------- /screenshots/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/screenshots/3.jpg -------------------------------------------------------------------------------- /screenshots/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/screenshots/4.jpg -------------------------------------------------------------------------------- /screenshots/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/screenshots/5.jpg -------------------------------------------------------------------------------- /screenshots/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/screenshots/6.jpg -------------------------------------------------------------------------------- /screenshots/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/screenshots/7.jpg -------------------------------------------------------------------------------- /screenshots/8_order_success.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/screenshots/8_order_success.jpg -------------------------------------------------------------------------------- /screenshots/9_admin_login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rd003/BookShoppingCart-Mvc/HEAD/screenshots/9_admin_login.jpg --------------------------------------------------------------------------------