Changeset d2eccb3 for KernelRecordsMVC.Application
- Timestamp:
- 09/01/26 06:13:32 (4 weeks ago)
- Branches:
- main
- Children:
- d89d25b
- Parents:
- fa0fbaf
- Location:
- KernelRecordsMVC.Application
- Files:
-
- 2 added
- 26 edited
-
ViewModels/CartItemViewModel.cs (modified) (1 diff)
-
ViewModels/CreateReleaseViewModel.cs (modified) (1 diff)
-
ViewModels/CreateTrackViewModel.cs (modified) (1 diff)
-
ViewModels/EditProductViewModel.cs (modified) (1 diff)
-
ViewModels/ProfileViewModel.cs (modified) (1 diff)
-
ViewModels/SaleItemViewModel.cs (modified) (1 diff)
-
ViewModels/TopSellerViewModel.cs (added)
-
bin/Debug/net8.0/KernelRecordsMVC.Application.dll (modified) ( previous)
-
bin/Debug/net8.0/KernelRecordsMVC.Application.pdb (modified) ( previous)
-
bin/Debug/net8.0/KernelRecordsMVC.Domain.dll (modified) ( previous)
-
bin/Debug/net8.0/KernelRecordsMVC.Domain.pdb (modified) ( previous)
-
obj/Debug/net8.0/KernelRecordsMVC.Application.AssemblyInfo.cs (modified) (1 diff)
-
obj/Debug/net8.0/KernelRecordsMVC.Application.AssemblyInfoInputs.cache (modified) (1 diff)
-
obj/Debug/net8.0/KernelRecordsMVC.Application.csproj.AssemblyReference.cache (modified) ( previous)
-
obj/Debug/net8.0/KernelRecordsMVC.Application.csproj.CoreCompileInputs.cache (modified) (1 diff)
-
obj/Debug/net8.0/KernelRecordsMVC.Application.csproj.FileListAbsolute.txt (modified) (1 diff)
-
obj/Debug/net8.0/KernelRecordsMVC.Application.dll (modified) ( previous)
-
obj/Debug/net8.0/KernelRecordsMVC.Application.pdb (modified) ( previous)
-
obj/Debug/net8.0/KernelRecordsMVC.Application.sourcelink.json (added)
-
obj/Debug/net8.0/ref/KernelRecordsMVC.Application.dll (modified) ( previous)
-
obj/Debug/net8.0/refint/KernelRecordsMVC.Application.dll (modified) ( previous)
-
obj/KernelRecordsMVC.Application.csproj.nuget.dgspec.json (modified) (2 diffs)
-
obj/KernelRecordsMVC.Application.csproj.nuget.g.props (modified) (1 diff)
-
obj/project.assets.json (modified) (1 diff)
-
obj/project.nuget.cache (modified) (1 diff)
-
obj/project.packagespec.json (modified) (1 diff)
-
obj/rider.project.model.nuget.info (modified) (1 diff)
-
obj/rider.project.restore.info (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
KernelRecordsMVC.Application/ViewModels/CartItemViewModel.cs
rfa0fbaf rd2eccb3 16 16 17 17 public long Stock { get; set; } 18 19 public string? CoverPhoto { get; set; } 18 20 19 21 public decimal Total => -
KernelRecordsMVC.Application/ViewModels/CreateReleaseViewModel.cs
rfa0fbaf rd2eccb3 1 namespace KernelRecordsMVC.Application.ViewModels; 1 using System.ComponentModel.DataAnnotations; 2 3 namespace KernelRecordsMVC.Application.ViewModels; 2 4 3 5 public class CreateReleaseViewModel 4 6 { 5 7 // ========================================== 8 // RELEASE 9 // ========================================== 10 11 [Required] 12 [StringLength(200)] 13 public string Title { get; set; } = string.Empty; 14 15 16 [Display(Name = "Record Label")] 17 [StringLength(200)] 18 public string? RecordLabel { get; set; } 19 20 21 [Required] 22 [StringLength(100)] 23 public string Genre { get; set; } = string.Empty; 24 25 26 [Required] 27 [Display(Name = "Release Date")] 28 [DataType(DataType.Date)] 29 public DateTime ReleaseDate { get; set; } = DateTime.Today; 30 31 32 [Required] 33 [Display(Name = "Cover Photo")] 34 public string CoverPhoto { get; set; } = string.Empty; 35 36 37 // ALBUM or SINGLE 38 [Required] 39 [Display(Name = "Release Type")] 40 public string ReleaseType { get; set; } = "ALBUM"; 41 42 43 // ========================================== 44 // ARTISTS 45 // ========================================== 46 47 [Required] 48 [Display(Name = "Main Artist")] 49 public long MainArtistId { get; set; } 50 51 52 [Display(Name = "Featured Artists")] 53 public List<long> FeaturedArtistIds { get; set; } = new(); 54 55 56 // ========================================== 57 // SINGLE 58 // ========================================== 59 60 [Display(Name = "Single Duration")] 61 public string? SingleDuration { get; set; } 62 63 64 // ========================================== 65 // ALBUM 66 // ========================================== 67 68 public List<CreateTrackViewModel> Tracks { get; set; } = new(); 6 69 } -
KernelRecordsMVC.Application/ViewModels/CreateTrackViewModel.cs
rfa0fbaf rd2eccb3 1 namespace KernelRecordsMVC.Application.ViewModels; 1 using System.ComponentModel.DataAnnotations; 2 3 namespace KernelRecordsMVC.Application.ViewModels; 2 4 3 5 public class CreateTrackViewModel 4 6 { 5 7 [Required] 8 [Display(Name = "Track Name")] 9 public string SongName { get; set; } = string.Empty; 10 11 12 [Required] 13 [Display(Name = "Duration")] 14 public string SongDuration { get; set; } = string.Empty; 15 16 17 [Display(Name = "Track Artists")] 18 public List<long> ArtistIds { get; set; } = new(); 6 19 } -
KernelRecordsMVC.Application/ViewModels/EditProductViewModel.cs
rfa0fbaf rd2eccb3 1 namespace KernelRecordsMVC.Application.ViewModels; 2 3 using System.ComponentModel.DataAnnotations; 1 using System.ComponentModel.DataAnnotations; 4 2 using KernelRecordsMVC.Domain.Enums; 5 3 namespace KernelRecordsMVC.Application.ViewModels; 6 4 7 5 public class EditProductViewModel -
KernelRecordsMVC.Application/ViewModels/ProfileViewModel.cs
rfa0fbaf rd2eccb3 1 namespace KernelRecordsMVC.Application.ViewModels; 1 using System.ComponentModel.DataAnnotations; 2 3 namespace KernelRecordsMVC.Application.ViewModels; 2 4 3 5 public class ProfileViewModel 4 6 { 5 7 public long UserId { get; set; } 8 9 public string Username { get; set; } = null!; 10 11 [Required] 12 [EmailAddress] 13 public string Email { get; set; } = null!; 14 15 [Phone] 16 public string? TelephoneNumber { get; set; } 17 18 public string? ShippingAddress { get; set; } 19 20 public DateTime DateCreated { get; set; } 21 22 public long PointsCollected { get; set; } 6 23 } -
KernelRecordsMVC.Application/ViewModels/SaleItemViewModel.cs
rfa0fbaf rd2eccb3 3 3 public class SaleItemViewModel 4 4 { 5 5 public long ProductId { get; set; } 6 7 public long ReleaseId { get; set; } 8 9 public string ReleaseTitle { get; set; } = null!; 10 11 public string? CoverPhoto { get; set; } 12 13 public string Format { get; set; } = null!; 14 15 public decimal OriginalPrice { get; set; } 16 17 public decimal SalePrice { get; set; } 18 19 public decimal DiscountPercentage { get; set; } 20 21 public long Stock { get; set; } 22 23 public string ArtistName { get; set; } = null!; 6 24 } -
KernelRecordsMVC.Application/obj/Debug/net8.0/KernelRecordsMVC.Application.AssemblyInfo.cs
rfa0fbaf rd2eccb3 14 14 [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 15 15 [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 16 [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0 ")]16 [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+08aefc6f3b51f4bfcb7471a2fd319c064171b1c5")] 17 17 [assembly: System.Reflection.AssemblyProductAttribute("KernelRecordsMVC.Application")] 18 18 [assembly: System.Reflection.AssemblyTitleAttribute("KernelRecordsMVC.Application")] -
KernelRecordsMVC.Application/obj/Debug/net8.0/KernelRecordsMVC.Application.AssemblyInfoInputs.cache
rfa0fbaf rd2eccb3 1 e1328abe16b4d3d6b149631015b22e09c79c757f8e83e00fec1bda3b4266d18b 1 be6a89e2db3aa8112c2a3ae4c32c04b7e8b25d03049e0dfebf9780211ea8ddb1 -
KernelRecordsMVC.Application/obj/Debug/net8.0/KernelRecordsMVC.Application.csproj.CoreCompileInputs.cache
rfa0fbaf rd2eccb3 1 7be670584cff69f4c3781a6b17dc489406673780bfe6603fbced09fe0987e3b0 1 9f4ef03cf908860b9dd6d42a9604d053d9bc8564dfa0df3b05a4e677034a8ff2 -
KernelRecordsMVC.Application/obj/Debug/net8.0/KernelRecordsMVC.Application.csproj.FileListAbsolute.txt
rfa0fbaf rd2eccb3 9 9 C:\Users\Marko\RiderProjects\KernelRecordsMVC\KernelRecordsMVC.Application\obj\Debug\net8.0\KernelRecordsMVC.Application.AssemblyInfo.cs 10 10 C:\Users\Marko\RiderProjects\KernelRecordsMVC\KernelRecordsMVC.Application\obj\Debug\net8.0\KernelRecordsMVC.Application.csproj.CoreCompileInputs.cache 11 C:\Users\Marko\RiderProjects\KernelRecordsMVC\KernelRecordsMVC.Application\obj\Debug\net8.0\KernelRecordsMVC.Application.sourcelink.json 11 12 C:\Users\Marko\RiderProjects\KernelRecordsMVC\KernelRecordsMVC.Application\obj\Debug\net8.0\KernelRe.C07FDBC1.Up2Date 12 13 C:\Users\Marko\RiderProjects\KernelRecordsMVC\KernelRecordsMVC.Application\obj\Debug\net8.0\KernelRecordsMVC.Application.dll -
KernelRecordsMVC.Application/obj/KernelRecordsMVC.Application.csproj.nuget.dgspec.json
rfa0fbaf rd2eccb3 69 69 } 70 70 }, 71 "runtimeIdentifierGraphPath": "C:\\ Users\\Marko\\.dotnet\\sdk\\8.0.422/PortableRuntimeIdentifierGraph.json"71 "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.424/PortableRuntimeIdentifierGraph.json" 72 72 } 73 73 } … … 133 133 } 134 134 }, 135 "runtimeIdentifierGraphPath": "C:\\ Users\\Marko\\.dotnet\\sdk\\8.0.422/PortableRuntimeIdentifierGraph.json"135 "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.424/PortableRuntimeIdentifierGraph.json" 136 136 } 137 137 } -
KernelRecordsMVC.Application/obj/KernelRecordsMVC.Application.csproj.nuget.g.props
rfa0fbaf rd2eccb3 8 8 <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Marko\.nuget\packages\</NuGetPackageFolders> 9 9 <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle> 10 <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' "> 7.0.0</NuGetToolVersion>10 <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.11.2</NuGetToolVersion> 11 11 </PropertyGroup> 12 12 <ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> -
KernelRecordsMVC.Application/obj/project.assets.json
rfa0fbaf rd2eccb3 644 644 } 645 645 }, 646 "runtimeIdentifierGraphPath": "C:\\ Users\\Marko\\.dotnet\\sdk\\8.0.422/PortableRuntimeIdentifierGraph.json"646 "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.424/PortableRuntimeIdentifierGraph.json" 647 647 } 648 648 } -
KernelRecordsMVC.Application/obj/project.nuget.cache
rfa0fbaf rd2eccb3 1 1 { 2 2 "version": 2, 3 "dgSpecHash": " 2ClWmI1jUi8=",3 "dgSpecHash": "5BQiffvyB0E=", 4 4 "success": true, 5 5 "projectFilePath": "C:\\Users\\Marko\\RiderProjects\\KernelRecordsMVC\\KernelRecordsMVC.Application\\KernelRecordsMVC.Application.csproj", -
KernelRecordsMVC.Application/obj/project.packagespec.json
rfa0fbaf rd2eccb3 1 "restore":{"projectUniqueName":"C:\\Users\\Marko\\RiderProjects\\KernelRecordsMVC\\KernelRecordsMVC.Application\\KernelRecordsMVC.Application.csproj","projectName":"KernelRecordsMVC.Application","projectPath":"C:\\Users\\Marko\\RiderProjects\\KernelRecordsMVC\\KernelRecordsMVC.Application\\KernelRecordsMVC.Application.csproj","packagesPath":"","outputPath":"C:\\Users\\Marko\\RiderProjects\\KernelRecordsMVC\\KernelRecordsMVC.Application\\obj\\","projectStyle":"PackageReference","originalTargetFrameworks":["net8.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{"C:\\Users\\Marko\\RiderProjects\\KernelRecordsMVC\\KernelRecordsMVC.Domain\\KernelRecordsMVC.Domain.csproj":{"projectPath":"C:\\Users\\Marko\\RiderProjects\\KernelRecordsMVC\\KernelRecordsMVC.Domain\\KernelRecordsMVC.Domain.csproj"}}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"}}"frameworks":{"net8.0":{"targetAlias":"net8.0","dependencies":{"Microsoft.EntityFrameworkCore":{"target":"Package","version":"[8.0.0, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\ Users\\Marko\\.dotnet\\sdk\\8.0.422/PortableRuntimeIdentifierGraph.json"}}1 "restore":{"projectUniqueName":"C:\\Users\\Marko\\RiderProjects\\KernelRecordsMVC\\KernelRecordsMVC.Application\\KernelRecordsMVC.Application.csproj","projectName":"KernelRecordsMVC.Application","projectPath":"C:\\Users\\Marko\\RiderProjects\\KernelRecordsMVC\\KernelRecordsMVC.Application\\KernelRecordsMVC.Application.csproj","packagesPath":"","outputPath":"C:\\Users\\Marko\\RiderProjects\\KernelRecordsMVC\\KernelRecordsMVC.Application\\obj\\","projectStyle":"PackageReference","originalTargetFrameworks":["net8.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{"C:\\Users\\Marko\\RiderProjects\\KernelRecordsMVC\\KernelRecordsMVC.Domain\\KernelRecordsMVC.Domain.csproj":{"projectPath":"C:\\Users\\Marko\\RiderProjects\\KernelRecordsMVC\\KernelRecordsMVC.Domain\\KernelRecordsMVC.Domain.csproj"}}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"}}"frameworks":{"net8.0":{"targetAlias":"net8.0","dependencies":{"Microsoft.EntityFrameworkCore":{"target":"Package","version":"[8.0.0, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Program Files\\dotnet\\sdk\\8.0.424/PortableRuntimeIdentifierGraph.json"}} -
KernelRecordsMVC.Application/obj/rider.project.model.nuget.info
rfa0fbaf rd2eccb3 1 178 788662268741991 17882300160457909 -
KernelRecordsMVC.Application/obj/rider.project.restore.info
rfa0fbaf rd2eccb3 1 178 788995962548091 17882300160457909
Note:
See TracChangeset
for help on using the changeset viewer.
