Не работает

This commit is contained in:
2025-05-13 23:06:50 +04:00
parent 0d15923b94
commit 87708ee1e6
213 changed files with 92085 additions and 2 deletions

View File

@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputerStoreDatabase.Models;
public class ComponentsAssemblies
{
public int AssemblyId { get; set; }
[ForeignKey("AssemblyId")]
public virtual Assembly Assembly { get; set; } = new();
public int ComponentId { get; set; }
[ForeignKey("ComponentId")]
public virtual Component Component { get; set; } = new();
}