Changeset e9a73ea
- Timestamp:
- 09/11/26 06:52:11 (2 weeks ago)
- Branches:
- main
- Parents:
- 49c2320 (diff), f939d10 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - Files:
-
- 165 added
-
.gitignore (added)
-
.idea/.idea.KernelRecordsMVC/.idea/.gitignore (added)
-
.idea/.idea.KernelRecordsMVC/.idea/encodings.xml (added)
-
.idea/.idea.KernelRecordsMVC/.idea/indexLayout.xml (added)
-
.idea/.idea.KernelRecordsMVC/.idea/vcs.xml (added)
-
KernelRecordsMVC.Application/KernelRecordsMVC.Application.csproj (added)
-
KernelRecordsMVC.Application/ViewModels/CartItemViewModel.cs (added)
-
KernelRecordsMVC.Application/ViewModels/CartViewModel.cs (added)
-
KernelRecordsMVC.Application/ViewModels/CreateArtistViewModel.cs (added)
-
KernelRecordsMVC.Application/ViewModels/CreateProductViewModel.cs (added)
-
KernelRecordsMVC.Application/ViewModels/CreateReleaseViewModel.cs (added)
-
KernelRecordsMVC.Application/ViewModels/CreateTrackViewModel.cs (added)
-
KernelRecordsMVC.Application/ViewModels/EditArtistViewModel.cs (added)
-
KernelRecordsMVC.Application/ViewModels/EditProductViewModel.cs (added)
-
KernelRecordsMVC.Application/ViewModels/EditReleaseViewModel.cs (added)
-
KernelRecordsMVC.Application/ViewModels/LoginViewModel.cs (added)
-
KernelRecordsMVC.Application/ViewModels/ProfileViewModel.cs (added)
-
KernelRecordsMVC.Application/ViewModels/RegisterViewModel.cs (added)
-
KernelRecordsMVC.Application/ViewModels/SaleItemViewModel.cs (added)
-
KernelRecordsMVC.Application/ViewModels/TopSellerViewModel.cs (added)
-
KernelRecordsMVC.Domain/Enums/AdminType.cs (added)
-
KernelRecordsMVC.Domain/Enums/ArtistReleaseType.cs (added)
-
KernelRecordsMVC.Domain/Enums/ModificationType.cs (added)
-
KernelRecordsMVC.Domain/Enums/OrderStatusType.cs (added)
-
KernelRecordsMVC.Domain/Enums/PaymentMethodType.cs (added)
-
KernelRecordsMVC.Domain/Enums/ProductFormat.cs (added)
-
KernelRecordsMVC.Domain/KernelRecordsMVC.Domain.csproj (added)
-
KernelRecordsMVC.Domain/Models/Admin.cs (added)
-
KernelRecordsMVC.Domain/Models/Album.cs (added)
-
KernelRecordsMVC.Domain/Models/AlbumSong.cs (added)
-
KernelRecordsMVC.Domain/Models/Artist.cs (added)
-
KernelRecordsMVC.Domain/Models/Consumer.cs (added)
-
KernelRecordsMVC.Domain/Models/ErrorViewModel.cs (added)
-
KernelRecordsMVC.Domain/Models/Modification.cs (added)
-
KernelRecordsMVC.Domain/Models/ModificationProduct.cs (added)
-
KernelRecordsMVC.Domain/Models/Order.cs (added)
-
KernelRecordsMVC.Domain/Models/OrderProduct.cs (added)
-
KernelRecordsMVC.Domain/Models/Product.cs (added)
-
KernelRecordsMVC.Domain/Models/Release.cs (added)
-
KernelRecordsMVC.Domain/Models/ReleaseArtist.cs (added)
-
KernelRecordsMVC.Domain/Models/SingleRelease.cs (added)
-
KernelRecordsMVC.Domain/Models/Song.cs (added)
-
KernelRecordsMVC.Domain/Models/SongArtist.cs (added)
-
KernelRecordsMVC.Domain/Models/User.cs (added)
-
KernelRecordsMVC.Domain/Models/Wishlist.cs (added)
-
KernelRecordsMVC.Domain/Models/WishlistProduct.cs (added)
-
KernelRecordsMVC.Infrastructure/Configurations/OrderConfiguration.cs (added)
-
KernelRecordsMVC.Infrastructure/Configurations/ProductConfiguration.cs (added)
-
KernelRecordsMVC.Infrastructure/Configurations/ReleaseConfiguration.cs (added)
-
KernelRecordsMVC.Infrastructure/Data/KernelRecordsContext.cs (added)
-
KernelRecordsMVC.Infrastructure/KernelRecordsMVC.Infrastructure.csproj (added)
-
KernelRecordsMVC.Infrastructure/Repositories/IOrderRepository.cs (added)
-
KernelRecordsMVC.Infrastructure/Repositories/IProductRepository.cs (added)
-
KernelRecordsMVC.Infrastructure/Repositories/IReleaseRepository.cs (added)
-
KernelRecordsMVC.Infrastructure/Repositories/OrderRepository.cs (added)
-
KernelRecordsMVC.Infrastructure/Repositories/ProductRepository.cs (added)
-
KernelRecordsMVC.Infrastructure/Repositories/ReleaseRepository.cs (added)
-
KernelRecordsMVC.Web/Controllers/AccountController.cs (added)
-
KernelRecordsMVC.Web/Controllers/AdminController.cs (added)
-
KernelRecordsMVC.Web/Controllers/ArtistController.cs (added)
-
KernelRecordsMVC.Web/Controllers/HomeController.cs (added)
-
KernelRecordsMVC.Web/Controllers/OrderController.cs (added)
-
KernelRecordsMVC.Web/Controllers/ReleaseController.cs (added)
-
KernelRecordsMVC.Web/Controllers/SaleController.cs (added)
-
KernelRecordsMVC.Web/Controllers/TopSellersController.cs (added)
-
KernelRecordsMVC.Web/Controllers/WishlistController.cs (added)
-
KernelRecordsMVC.Web/KernelRecordsMVC.Web.csproj (added)
-
KernelRecordsMVC.Web/Program.cs (added)
-
KernelRecordsMVC.Web/Properties/launchSettings.json (added)
-
KernelRecordsMVC.Web/Views/Account/Login.cshtml (added)
-
KernelRecordsMVC.Web/Views/Account/Profile.cshtml (added)
-
KernelRecordsMVC.Web/Views/Account/Register.cshtml (added)
-
KernelRecordsMVC.Web/Views/Admin/Artists.cshtml (added)
-
KernelRecordsMVC.Web/Views/Admin/CreateArtist.cshtml (added)
-
KernelRecordsMVC.Web/Views/Admin/CreateProduct.cshtml (added)
-
KernelRecordsMVC.Web/Views/Admin/CreateRelease.cshtml (added)
-
KernelRecordsMVC.Web/Views/Admin/EditArtist.cshtml (added)
-
KernelRecordsMVC.Web/Views/Admin/EditProduct.cshtml (added)
-
KernelRecordsMVC.Web/Views/Admin/EditRelease.cshtml (added)
-
KernelRecordsMVC.Web/Views/Admin/Index.cshtml (added)
-
KernelRecordsMVC.Web/Views/Admin/Products.cshtml (added)
-
KernelRecordsMVC.Web/Views/Admin/Releases.cshtml (added)
-
KernelRecordsMVC.Web/Views/Artist/Details.cshtml (added)
-
KernelRecordsMVC.Web/Views/Artist/Index.cshtml (added)
-
KernelRecordsMVC.Web/Views/Home/Index.cshtml (added)
-
KernelRecordsMVC.Web/Views/Home/Privacy.cshtml (added)
-
KernelRecordsMVC.Web/Views/Order/Cart.cshtml (added)
-
KernelRecordsMVC.Web/Views/Release/Details.cshtml (added)
-
KernelRecordsMVC.Web/Views/Release/Index.cshtml (added)
-
KernelRecordsMVC.Web/Views/Sale/Index.cshtml (added)
-
KernelRecordsMVC.Web/Views/Shared/Error.cshtml (added)
-
KernelRecordsMVC.Web/Views/Shared/_Layout.cshtml (added)
-
KernelRecordsMVC.Web/Views/Shared/_Layout.cshtml.css (added)
-
KernelRecordsMVC.Web/Views/Shared/_ValidationScriptsPartial.cshtml (added)
-
KernelRecordsMVC.Web/Views/TopSellers/Index.cshtml (added)
-
KernelRecordsMVC.Web/Views/Wishlist/Index.cshtml (added)
-
KernelRecordsMVC.Web/Views/_ViewImports.cshtml (added)
-
KernelRecordsMVC.Web/Views/_ViewStart.cshtml (added)
-
KernelRecordsMVC.Web/appsettings.Development.json (added)
-
KernelRecordsMVC.Web/appsettings.json (added)
-
KernelRecordsMVC.Web/wwwroot/css/site.css (added)
-
KernelRecordsMVC.Web/wwwroot/favicon.ico (added)
-
KernelRecordsMVC.Web/wwwroot/images/logo.png (added)
-
KernelRecordsMVC.Web/wwwroot/js/site.js (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/LICENSE (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.js (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js (added)
-
KernelRecordsMVC.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map (added)
-
KernelRecordsMVC.Web/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt (added)
-
KernelRecordsMVC.Web/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js (added)
-
KernelRecordsMVC.Web/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js (added)
-
KernelRecordsMVC.Web/wwwroot/lib/jquery-validation/LICENSE.md (added)
-
KernelRecordsMVC.Web/wwwroot/lib/jquery-validation/dist/additional-methods.js (added)
-
KernelRecordsMVC.Web/wwwroot/lib/jquery-validation/dist/additional-methods.min.js (added)
-
KernelRecordsMVC.Web/wwwroot/lib/jquery-validation/dist/jquery.validate.js (added)
-
KernelRecordsMVC.Web/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js (added)
-
KernelRecordsMVC.Web/wwwroot/lib/jquery/LICENSE.txt (added)
-
KernelRecordsMVC.Web/wwwroot/lib/jquery/dist/jquery.js (added)
-
KernelRecordsMVC.Web/wwwroot/lib/jquery/dist/jquery.min.js (added)
-
KernelRecordsMVC.Web/wwwroot/lib/jquery/dist/jquery.min.map (added)
-
KernelRecordsMVC.sln (added)
-
Properties/launchSettings.json (added)
-
appsettings.Development.json (added)
-
appsettings.json (added)
Note:
See TracChangeset
for help on using the changeset viewer.
