diff --git a/AutomobilePlant.sln b/AutomobilePlant.sln
index 93ebfba..f9515e0 100644
--- a/AutomobilePlant.sln
+++ b/AutomobilePlant.sln
@@ -15,6 +15,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AutomobilePlantListImplemen
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AutomobilePlantFileImplement", "AutomobilePlantFileImplement\AutomobilePlantFileImplement.csproj", "{10818526-654C-4928-985F-9C02A2A02B15}"
EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AutomobilePlantDatabaseImplement", "AutomobilePlantDatabaseImplement\AutomobilePlantDatabaseImplement.csproj", "{6C1976A0-354A-4700-9CDA-3242782F5632}"
+EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@@ -45,6 +47,10 @@ Global
{10818526-654C-4928-985F-9C02A2A02B15}.Debug|Any CPU.Build.0 = Debug|Any CPU
{10818526-654C-4928-985F-9C02A2A02B15}.Release|Any CPU.ActiveCfg = Release|Any CPU
{10818526-654C-4928-985F-9C02A2A02B15}.Release|Any CPU.Build.0 = Release|Any CPU
+ {6C1976A0-354A-4700-9CDA-3242782F5632}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {6C1976A0-354A-4700-9CDA-3242782F5632}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {6C1976A0-354A-4700-9CDA-3242782F5632}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {6C1976A0-354A-4700-9CDA-3242782F5632}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
diff --git a/AutomobilePlant/AutomobilePlant.csproj b/AutomobilePlant/AutomobilePlant.csproj
index 18528cf..da453a9 100644
--- a/AutomobilePlant/AutomobilePlant.csproj
+++ b/AutomobilePlant/AutomobilePlant.csproj
@@ -2,13 +2,22 @@
WinExe
- net6.0-windows
+ net7.0-windows
enable
true
enable
+
+
+ all
+ runtime; build; native; contentfiles; analyzers; buildtransitive
+
+
+ all
+ runtime; build; native; contentfiles; analyzers; buildtransitive
+
@@ -16,6 +25,7 @@
+
diff --git a/AutomobilePlant/Program.cs b/AutomobilePlant/Program.cs
index 3b193cf..1255289 100644
--- a/AutomobilePlant/Program.cs
+++ b/AutomobilePlant/Program.cs
@@ -1,7 +1,7 @@
using AutomobilePlantBusinessLogic.BusinessLogics;
using AutomobilePlantContracts.BusinessLogicContracts;
using AutomobilePlantContracts.StorageContracts;
-using AutomobilePlantFileImplement.Implements;
+using AutomobilePlantDatabaseImplement.Implements;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using NLog.Extensions.Logging;
diff --git a/AutomobilePlantBusinessLogic/AutomobilePlantBusinessLogic.csproj b/AutomobilePlantBusinessLogic/AutomobilePlantBusinessLogic.csproj
index 9a26466..86f01cc 100644
--- a/AutomobilePlantBusinessLogic/AutomobilePlantBusinessLogic.csproj
+++ b/AutomobilePlantBusinessLogic/AutomobilePlantBusinessLogic.csproj
@@ -1,12 +1,13 @@
-
+
- net6.0
+ net7.0
enable
enable
+
diff --git a/AutomobilePlantContracts/AutomobilePlantContracts.csproj b/AutomobilePlantContracts/AutomobilePlantContracts.csproj
index 743e9bf..5fbf228 100644
--- a/AutomobilePlantContracts/AutomobilePlantContracts.csproj
+++ b/AutomobilePlantContracts/AutomobilePlantContracts.csproj
@@ -1,11 +1,15 @@
- net6.0
+ net7.0
enable
enable
+
+
+
+
diff --git a/AutomobilePlantDataModels/AutomobilePlantDataModels.csproj b/AutomobilePlantDataModels/AutomobilePlantDataModels.csproj
index 132c02c..701eb26 100644
--- a/AutomobilePlantDataModels/AutomobilePlantDataModels.csproj
+++ b/AutomobilePlantDataModels/AutomobilePlantDataModels.csproj
@@ -1,9 +1,13 @@
-
+
- net6.0
+ net7.0
enable
enable
+
+
+
+
diff --git a/AutomobilePlantDatabaseImplement/AutomobilePlantDatabase.cs b/AutomobilePlantDatabaseImplement/AutomobilePlantDatabase.cs
new file mode 100644
index 0000000..d8ccc8b
--- /dev/null
+++ b/AutomobilePlantDatabaseImplement/AutomobilePlantDatabase.cs
@@ -0,0 +1,28 @@
+using AutomobilePlantDatabaseImplement.Models;
+using Microsoft.EntityFrameworkCore;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Numerics;
+using System.Reflection.Metadata;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace AutomobilePlantDatabaseImplement
+{
+ public class AutomobilePlantDatabase : DbContext
+ {
+ protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
+ {
+ if (optionsBuilder.IsConfigured == false)
+ {
+ optionsBuilder.UseSqlServer(@"Data Source=DESKTOP-50UQ1O1\MSSQLSERVER01;Initial Catalog=RenovationWorkDatabase;Integrated Security=True;MultipleActiveResultSets=True;;TrustServerCertificate=True");
+ }
+ base.OnConfiguring(optionsBuilder);
+ }
+ public virtual DbSet Components { set; get; }
+ public virtual DbSet Cars { set; get; }
+ public virtual DbSet CarComponents { set; get; }
+ public virtual DbSet Orders { set; get; }
+ }
+}
diff --git a/AutomobilePlantDatabaseImplement/AutomobilePlantDatabaseImplement.csproj b/AutomobilePlantDatabaseImplement/AutomobilePlantDatabaseImplement.csproj
new file mode 100644
index 0000000..de677e7
--- /dev/null
+++ b/AutomobilePlantDatabaseImplement/AutomobilePlantDatabaseImplement.csproj
@@ -0,0 +1,24 @@
+
+
+
+ net7.0
+ enable
+ enable
+
+
+
+
+
+
+
+ all
+ runtime; build; native; contentfiles; analyzers; buildtransitive
+
+
+
+
+
+
+
+
+
diff --git a/AutomobilePlantDatabaseImplement/Implements/CarStorage.cs b/AutomobilePlantDatabaseImplement/Implements/CarStorage.cs
new file mode 100644
index 0000000..e687073
--- /dev/null
+++ b/AutomobilePlantDatabaseImplement/Implements/CarStorage.cs
@@ -0,0 +1,131 @@
+using AutomobilePlantContracts.StorageContracts;
+using AutomobilePlantContracts.BindingModels;
+using AutomobilePlantContracts.SearchModels;
+using AutomobilePlantContracts.ViewModels;
+using AutomobilePlantDatabaseImplement.Models;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Reflection.Metadata;
+using System.Text;
+using System.Threading.Tasks;
+using Microsoft.EntityFrameworkCore;
+using System.Xml.Linq;
+
+namespace AutomobilePlantDatabaseImplement.Implements
+{
+ public class CarStorage : ICarStorage
+ {
+ public CarViewModel? GetElement(CarSearchModel model)
+ {
+ if (string.IsNullOrEmpty(model.CarName) && !model.Id.HasValue)
+ {
+ return null;
+ }
+ using var context = new AutomobilePlantDatabase();
+ return context.Cars.Include(x => x.Components)
+ .ThenInclude(x => x.Component)
+ .FirstOrDefault(x => (!string.IsNullOrEmpty(model.CarName) &&
+ x.CarName == model.CarName) ||
+ (model.Id.HasValue && x.Id == model.Id))
+ ?.GetViewModel;
+ }
+
+ public List GetFilteredList(CarSearchModel model)
+ {
+ if (string.IsNullOrEmpty(model.CarName))
+ {
+ return new();
+ }
+ using var context = new AutomobilePlantDatabase();
+ return context.Cars
+ .Include(x => x.Components)
+ .ThenInclude(x => x.Component)
+ .Where(x => x.CarName.Contains(model.CarName))
+ .ToList()
+ .Select(x => x.GetViewModel)
+ .ToList();
+ }
+
+ public List GetFullList()
+ {
+ using var context = new AutomobilePlantDatabase();
+ return context.Cars
+ .Include(x => x.Components)
+ .ThenInclude(x => x.Component)
+ .ToList()
+ .Select(x => x.GetViewModel)
+ .ToList();
+ }
+
+ public CarViewModel? Insert(CarBindingModel model)
+ {
+ using var context = new AutomobilePlantDatabase();
+ using var transaction = context.Database.BeginTransaction();
+ {
+ try
+ {
+ var newCar = Car.Create(context, model);
+ if (newCar == null)
+ {
+ transaction.Rollback();
+ return null;
+ }
+ context.Cars.Add(newCar);
+
+ context.SaveChanges();
+ context.Database.CommitTransaction();
+
+ return newCar.GetViewModel;
+ }
+ catch (Exception)
+ {
+ transaction.Rollback();
+ return null;
+ }
+ }
+ }
+
+ public CarViewModel? Update(CarBindingModel model)
+ {
+ using var context = new AutomobilePlantDatabase();
+ using var transaction = context.Database.BeginTransaction();
+ {
+ try
+ {
+ var car = context.Cars.FirstOrDefault(x => x.Id == model.Id);
+ if (car == null)
+ {
+ transaction.Rollback();
+ return null;
+ }
+
+ car.Update(model);
+ car.UpdateComponents(context, model);
+
+ context.SaveChanges();
+ context.Database.CommitTransaction();
+
+ return car.GetViewModel;
+ }
+ catch (Exception)
+ {
+ transaction.Rollback();
+ return null;
+ }
+ }
+ }
+ public CarViewModel? Delete(CarBindingModel model)
+ {
+ using var context = new AutomobilePlantDatabase();
+ var element = context.Cars.FirstOrDefault(rec => rec.Id == model.Id);
+ if (element != null)
+ {
+ context.Cars.Remove(element);
+ context.SaveChanges();
+ return element.GetViewModel;
+ }
+ return null;
+ }
+ }
+}
diff --git a/AutomobilePlantDatabaseImplement/Implements/ComponentStorage.cs b/AutomobilePlantDatabaseImplement/Implements/ComponentStorage.cs
new file mode 100644
index 0000000..fe5e394
--- /dev/null
+++ b/AutomobilePlantDatabaseImplement/Implements/ComponentStorage.cs
@@ -0,0 +1,87 @@
+using AutomobilePlantContracts.BindingModels;
+using AutomobilePlantContracts.SearchModels;
+using AutomobilePlantContracts.StorageContracts;
+using AutomobilePlantContracts.ViewModels;
+using AutomobilePlantDatabaseImplement.Models;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Numerics;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace AutomobilePlantDatabaseImplement.Implements
+{
+ public class ComponentStorage : IComponentStorage
+ {
+ public ComponentViewModel? GetElement(ComponentSearchModel model)
+ {
+ if (string.IsNullOrEmpty(model.ComponentName) && !model.Id.HasValue)
+ {
+ return null;
+ }
+ using var context = new AutomobilePlantDatabase();
+ return context.Components.FirstOrDefault(x =>
+ (!string.IsNullOrEmpty(model.ComponentName) && x.ComponentName == model.ComponentName)
+ || (model.Id.HasValue && x.Id == model.Id))?.GetViewModel;
+ }
+
+ public List GetFilteredList(ComponentSearchModel model)
+ {
+ if (string.IsNullOrEmpty(model.ComponentName))
+ {
+ return new();
+ }
+ using var context = new AutomobilePlantDatabase();
+ return context.Components
+ .Where(x => x.ComponentName.Contains(model.ComponentName))
+ .Select(x => x.GetViewModel)
+ .ToList();
+ }
+
+ public List GetFullList()
+ {
+ using var context = new AutomobilePlantDatabase();
+ return context.Components.Select(x => x.GetViewModel).ToList();
+ }
+
+ public ComponentViewModel? Insert(ComponentBindingModel model)
+ {
+ var newComponent = Component.Create(model);
+ if (newComponent == null)
+ {
+ return null;
+ }
+ using var context = new AutomobilePlantDatabase();
+ context.Components.Add(newComponent);
+ context.SaveChanges();
+ return newComponent.GetViewModel;
+ }
+
+ public ComponentViewModel? Update(ComponentBindingModel model)
+ {
+ using var context = new AutomobilePlantDatabase();
+ var component = context.Components.FirstOrDefault(x => x.Id == model.Id);
+ if (component == null)
+ {
+ return null;
+ }
+ component.Update(model);
+ context.SaveChanges();
+ return component.GetViewModel;
+ }
+
+ public ComponentViewModel? Delete(ComponentBindingModel model)
+ {
+ using var context = new AutomobilePlantDatabase();
+ var element = context.Components.FirstOrDefault(rec => rec.Id == model.Id);
+ if (element != null)
+ {
+ context.Components.Remove(element);
+ context.SaveChanges();
+ return element.GetViewModel;
+ }
+ return null;
+ }
+ }
+}
diff --git a/AutomobilePlantDatabaseImplement/Implements/OrderStorage.cs b/AutomobilePlantDatabaseImplement/Implements/OrderStorage.cs
new file mode 100644
index 0000000..36959d7
--- /dev/null
+++ b/AutomobilePlantDatabaseImplement/Implements/OrderStorage.cs
@@ -0,0 +1,85 @@
+using AutomobilePlantContracts.BindingModels;
+using AutomobilePlantContracts.SearchModels;
+using AutomobilePlantContracts.StorageContracts;
+using AutomobilePlantContracts.ViewModels;
+using AutomobilePlantDatabaseImplement.Models;
+using Microsoft.EntityFrameworkCore;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace AutomobilePlantDatabaseImplement.Implements
+{
+ public class OrderStorage : IOrderStorage
+ {
+ public OrderViewModel? GetElement(OrderSearchModel model)
+ {
+ if (!model.Id.HasValue)
+ {
+ return null;
+ }
+ using var context = new AutomobilePlantDatabase();
+ return context.Orders.Include(x => x.Car).FirstOrDefault(x => (model.Id.HasValue && x.Id == model.Id))?.GetViewModel;
+ }
+
+ public List GetFilteredList(OrderSearchModel model)
+ {
+ if (!model.Id.HasValue)
+ {
+ return new();
+ }
+ using var context = new AutomobilePlantDatabase();
+ return context.Orders
+ .Where(x => x.Id == model.Id)
+ .Include(x => x.Car)
+ .Select(x => x.GetViewModel)
+ .ToList();
+ }
+
+ public List GetFullList()
+ {
+ using var context = new AutomobilePlantDatabase();
+ return context.Orders.Include(x => x.Car).Select(x => x.GetViewModel).ToList();
+ }
+
+ public OrderViewModel? Insert(OrderBindingModel model)
+ {
+ var newOrder = Order.Create(model);
+ if (newOrder == null)
+ {
+ return null;
+ }
+ using var context = new AutomobilePlantDatabase();
+ context.Orders.Add(newOrder);
+ context.SaveChanges();
+ return context.Orders.Include(x => x.Car).FirstOrDefault(x => x.Id == newOrder.Id)?.GetViewModel;
+ }
+
+ public OrderViewModel? Update(OrderBindingModel model)
+ {
+ using var context = new AutomobilePlantDatabase();
+ var order = context.Orders.FirstOrDefault(x => x.Id == model.Id);
+ if (order == null)
+ {
+ return null;
+ }
+ order.Update(model);
+ context.SaveChanges();
+ return context.Orders.Include(x => x.Car).FirstOrDefault(x => x.Id == model.Id)?.GetViewModel;
+ }
+ public OrderViewModel? Delete(OrderBindingModel model)
+ {
+ using var context = new AutomobilePlantDatabase();
+ var element = context.Orders.FirstOrDefault(rec => rec.Id == model.Id);
+ if (element != null)
+ {
+ context.Orders.Remove(element);
+ context.SaveChanges();
+ return element.GetViewModel;
+ }
+ return null;
+ }
+ }
+}
diff --git a/AutomobilePlantDatabaseImplement/Migrations/20240417052159_InitialCreate.Designer.cs b/AutomobilePlantDatabaseImplement/Migrations/20240417052159_InitialCreate.Designer.cs
new file mode 100644
index 0000000..16a2231
--- /dev/null
+++ b/AutomobilePlantDatabaseImplement/Migrations/20240417052159_InitialCreate.Designer.cs
@@ -0,0 +1,171 @@
+//
+using System;
+using AutomobilePlantDatabaseImplement;
+using Microsoft.EntityFrameworkCore;
+using Microsoft.EntityFrameworkCore.Infrastructure;
+using Microsoft.EntityFrameworkCore.Metadata;
+using Microsoft.EntityFrameworkCore.Migrations;
+using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
+
+#nullable disable
+
+namespace AutomobilePlantDatabaseImplement.Migrations
+{
+ [DbContext(typeof(AutomobilePlantDatabase))]
+ [Migration("20240417052159_InitialCreate")]
+ partial class InitialCreate
+ {
+ ///
+ protected override void BuildTargetModel(ModelBuilder modelBuilder)
+ {
+#pragma warning disable 612, 618
+ modelBuilder
+ .HasAnnotation("ProductVersion", "7.0.3")
+ .HasAnnotation("Relational:MaxIdentifierLength", 128);
+
+ SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder);
+
+ modelBuilder.Entity("AutomobilePlantDatabaseImplement.Models.Car", b =>
+ {
+ b.Property("Id")
+ .ValueGeneratedOnAdd()
+ .HasColumnType("int");
+
+ SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id"));
+
+ b.Property("CarName")
+ .IsRequired()
+ .HasColumnType("nvarchar(max)");
+
+ b.Property("Price")
+ .HasColumnType("float");
+
+ b.HasKey("Id");
+
+ b.ToTable("Cars");
+ });
+
+ modelBuilder.Entity("AutomobilePlantDatabaseImplement.Models.CarComponent", b =>
+ {
+ b.Property("Id")
+ .ValueGeneratedOnAdd()
+ .HasColumnType("int");
+
+ SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id"));
+
+ b.Property("CarId")
+ .HasColumnType("int");
+
+ b.Property("ComponentId")
+ .HasColumnType("int");
+
+ b.Property("Count")
+ .HasColumnType("int");
+
+ b.HasKey("Id");
+
+ b.HasIndex("CarId");
+
+ b.HasIndex("ComponentId");
+
+ b.ToTable("CarComponents");
+ });
+
+ modelBuilder.Entity("AutomobilePlantDatabaseImplement.Models.Component", b =>
+ {
+ b.Property("Id")
+ .ValueGeneratedOnAdd()
+ .HasColumnType("int");
+
+ SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id"));
+
+ b.Property("ComponentName")
+ .IsRequired()
+ .HasColumnType("nvarchar(max)");
+
+ b.Property("Cost")
+ .HasColumnType("float");
+
+ b.HasKey("Id");
+
+ b.ToTable("Components");
+ });
+
+ modelBuilder.Entity("AutomobilePlantDatabaseImplement.Models.Order", b =>
+ {
+ b.Property("Id")
+ .ValueGeneratedOnAdd()
+ .HasColumnType("int");
+
+ SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id"));
+
+ b.Property("CarId")
+ .HasColumnType("int");
+
+ b.Property("Count")
+ .HasColumnType("int");
+
+ b.Property("DateCreate")
+ .HasColumnType("datetime2");
+
+ b.Property("DateImplement")
+ .HasColumnType("datetime2");
+
+ b.Property("Status")
+ .HasColumnType("int");
+
+ b.Property("Sum")
+ .HasColumnType("float");
+
+ b.HasKey("Id");
+
+ b.HasIndex("CarId");
+
+ b.ToTable("Orders");
+ });
+
+ modelBuilder.Entity("AutomobilePlantDatabaseImplement.Models.CarComponent", b =>
+ {
+ b.HasOne("AutomobilePlantDatabaseImplement.Models.Car", "Car")
+ .WithMany("Components")
+ .HasForeignKey("CarId")
+ .OnDelete(DeleteBehavior.Cascade)
+ .IsRequired();
+
+ b.HasOne("AutomobilePlantDatabaseImplement.Models.Component", "Component")
+ .WithMany("CarComponents")
+ .HasForeignKey("ComponentId")
+ .OnDelete(DeleteBehavior.Cascade)
+ .IsRequired();
+
+ b.Navigation("Car");
+
+ b.Navigation("Component");
+ });
+
+ modelBuilder.Entity("AutomobilePlantDatabaseImplement.Models.Order", b =>
+ {
+ b.HasOne("AutomobilePlantDatabaseImplement.Models.Car", "Car")
+ .WithMany("Orders")
+ .HasForeignKey("CarId")
+ .OnDelete(DeleteBehavior.Cascade)
+ .IsRequired();
+
+ b.Navigation("Car");
+ });
+
+ modelBuilder.Entity("AutomobilePlantDatabaseImplement.Models.Car", b =>
+ {
+ b.Navigation("Components");
+
+ b.Navigation("Orders");
+ });
+
+ modelBuilder.Entity("AutomobilePlantDatabaseImplement.Models.Component", b =>
+ {
+ b.Navigation("CarComponents");
+ });
+#pragma warning restore 612, 618
+ }
+ }
+}
diff --git a/AutomobilePlantDatabaseImplement/Migrations/20240417052159_InitialCreate.cs b/AutomobilePlantDatabaseImplement/Migrations/20240417052159_InitialCreate.cs
new file mode 100644
index 0000000..8dd6d3e
--- /dev/null
+++ b/AutomobilePlantDatabaseImplement/Migrations/20240417052159_InitialCreate.cs
@@ -0,0 +1,125 @@
+using System;
+using Microsoft.EntityFrameworkCore.Migrations;
+
+#nullable disable
+
+namespace AutomobilePlantDatabaseImplement.Migrations
+{
+ ///
+ public partial class InitialCreate : Migration
+ {
+ ///
+ protected override void Up(MigrationBuilder migrationBuilder)
+ {
+ migrationBuilder.CreateTable(
+ name: "Cars",
+ columns: table => new
+ {
+ Id = table.Column(type: "int", nullable: false)
+ .Annotation("SqlServer:Identity", "1, 1"),
+ CarName = table.Column(type: "nvarchar(max)", nullable: false),
+ Price = table.Column(type: "float", nullable: false)
+ },
+ constraints: table =>
+ {
+ table.PrimaryKey("PK_Cars", x => x.Id);
+ });
+
+ migrationBuilder.CreateTable(
+ name: "Components",
+ columns: table => new
+ {
+ Id = table.Column(type: "int", nullable: false)
+ .Annotation("SqlServer:Identity", "1, 1"),
+ ComponentName = table.Column(type: "nvarchar(max)", nullable: false),
+ Cost = table.Column(type: "float", nullable: false)
+ },
+ constraints: table =>
+ {
+ table.PrimaryKey("PK_Components", x => x.Id);
+ });
+
+ migrationBuilder.CreateTable(
+ name: "Orders",
+ columns: table => new
+ {
+ Id = table.Column(type: "int", nullable: false)
+ .Annotation("SqlServer:Identity", "1, 1"),
+ CarId = table.Column(type: "int", nullable: false),
+ Count = table.Column(type: "int", nullable: false),
+ Sum = table.Column(type: "float", nullable: false),
+ Status = table.Column(type: "int", nullable: false),
+ DateCreate = table.Column(type: "datetime2", nullable: false),
+ DateImplement = table.Column(type: "datetime2", nullable: true)
+ },
+ constraints: table =>
+ {
+ table.PrimaryKey("PK_Orders", x => x.Id);
+ table.ForeignKey(
+ name: "FK_Orders_Cars_CarId",
+ column: x => x.CarId,
+ principalTable: "Cars",
+ principalColumn: "Id",
+ onDelete: ReferentialAction.Cascade);
+ });
+
+ migrationBuilder.CreateTable(
+ name: "CarComponents",
+ columns: table => new
+ {
+ Id = table.Column(type: "int", nullable: false)
+ .Annotation("SqlServer:Identity", "1, 1"),
+ CarId = table.Column(type: "int", nullable: false),
+ ComponentId = table.Column(type: "int", nullable: false),
+ Count = table.Column(type: "int", nullable: false)
+ },
+ constraints: table =>
+ {
+ table.PrimaryKey("PK_CarComponents", x => x.Id);
+ table.ForeignKey(
+ name: "FK_CarComponents_Cars_CarId",
+ column: x => x.CarId,
+ principalTable: "Cars",
+ principalColumn: "Id",
+ onDelete: ReferentialAction.Cascade);
+ table.ForeignKey(
+ name: "FK_CarComponents_Components_ComponentId",
+ column: x => x.ComponentId,
+ principalTable: "Components",
+ principalColumn: "Id",
+ onDelete: ReferentialAction.Cascade);
+ });
+
+ migrationBuilder.CreateIndex(
+ name: "IX_CarComponents_CarId",
+ table: "CarComponents",
+ column: "CarId");
+
+ migrationBuilder.CreateIndex(
+ name: "IX_CarComponents_ComponentId",
+ table: "CarComponents",
+ column: "ComponentId");
+
+ migrationBuilder.CreateIndex(
+ name: "IX_Orders_CarId",
+ table: "Orders",
+ column: "CarId");
+ }
+
+ ///
+ protected override void Down(MigrationBuilder migrationBuilder)
+ {
+ migrationBuilder.DropTable(
+ name: "CarComponents");
+
+ migrationBuilder.DropTable(
+ name: "Orders");
+
+ migrationBuilder.DropTable(
+ name: "Components");
+
+ migrationBuilder.DropTable(
+ name: "Cars");
+ }
+ }
+}
diff --git a/AutomobilePlantDatabaseImplement/Migrations/AutomobilePlantDatabaseModelSnapshot.cs b/AutomobilePlantDatabaseImplement/Migrations/AutomobilePlantDatabaseModelSnapshot.cs
new file mode 100644
index 0000000..918d6ae
--- /dev/null
+++ b/AutomobilePlantDatabaseImplement/Migrations/AutomobilePlantDatabaseModelSnapshot.cs
@@ -0,0 +1,168 @@
+//
+using System;
+using AutomobilePlantDatabaseImplement;
+using Microsoft.EntityFrameworkCore;
+using Microsoft.EntityFrameworkCore.Infrastructure;
+using Microsoft.EntityFrameworkCore.Metadata;
+using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
+
+#nullable disable
+
+namespace AutomobilePlantDatabaseImplement.Migrations
+{
+ [DbContext(typeof(AutomobilePlantDatabase))]
+ partial class AutomobilePlantDatabaseModelSnapshot : ModelSnapshot
+ {
+ protected override void BuildModel(ModelBuilder modelBuilder)
+ {
+#pragma warning disable 612, 618
+ modelBuilder
+ .HasAnnotation("ProductVersion", "7.0.3")
+ .HasAnnotation("Relational:MaxIdentifierLength", 128);
+
+ SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder);
+
+ modelBuilder.Entity("AutomobilePlantDatabaseImplement.Models.Car", b =>
+ {
+ b.Property("Id")
+ .ValueGeneratedOnAdd()
+ .HasColumnType("int");
+
+ SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id"));
+
+ b.Property("CarName")
+ .IsRequired()
+ .HasColumnType("nvarchar(max)");
+
+ b.Property("Price")
+ .HasColumnType("float");
+
+ b.HasKey("Id");
+
+ b.ToTable("Cars");
+ });
+
+ modelBuilder.Entity("AutomobilePlantDatabaseImplement.Models.CarComponent", b =>
+ {
+ b.Property("Id")
+ .ValueGeneratedOnAdd()
+ .HasColumnType("int");
+
+ SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id"));
+
+ b.Property("CarId")
+ .HasColumnType("int");
+
+ b.Property("ComponentId")
+ .HasColumnType("int");
+
+ b.Property("Count")
+ .HasColumnType("int");
+
+ b.HasKey("Id");
+
+ b.HasIndex("CarId");
+
+ b.HasIndex("ComponentId");
+
+ b.ToTable("CarComponents");
+ });
+
+ modelBuilder.Entity("AutomobilePlantDatabaseImplement.Models.Component", b =>
+ {
+ b.Property("Id")
+ .ValueGeneratedOnAdd()
+ .HasColumnType("int");
+
+ SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id"));
+
+ b.Property("ComponentName")
+ .IsRequired()
+ .HasColumnType("nvarchar(max)");
+
+ b.Property("Cost")
+ .HasColumnType("float");
+
+ b.HasKey("Id");
+
+ b.ToTable("Components");
+ });
+
+ modelBuilder.Entity("AutomobilePlantDatabaseImplement.Models.Order", b =>
+ {
+ b.Property("Id")
+ .ValueGeneratedOnAdd()
+ .HasColumnType("int");
+
+ SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id"));
+
+ b.Property("CarId")
+ .HasColumnType("int");
+
+ b.Property("Count")
+ .HasColumnType("int");
+
+ b.Property("DateCreate")
+ .HasColumnType("datetime2");
+
+ b.Property("DateImplement")
+ .HasColumnType("datetime2");
+
+ b.Property("Status")
+ .HasColumnType("int");
+
+ b.Property("Sum")
+ .HasColumnType("float");
+
+ b.HasKey("Id");
+
+ b.HasIndex("CarId");
+
+ b.ToTable("Orders");
+ });
+
+ modelBuilder.Entity("AutomobilePlantDatabaseImplement.Models.CarComponent", b =>
+ {
+ b.HasOne("AutomobilePlantDatabaseImplement.Models.Car", "Car")
+ .WithMany("Components")
+ .HasForeignKey("CarId")
+ .OnDelete(DeleteBehavior.Cascade)
+ .IsRequired();
+
+ b.HasOne("AutomobilePlantDatabaseImplement.Models.Component", "Component")
+ .WithMany("CarComponents")
+ .HasForeignKey("ComponentId")
+ .OnDelete(DeleteBehavior.Cascade)
+ .IsRequired();
+
+ b.Navigation("Car");
+
+ b.Navigation("Component");
+ });
+
+ modelBuilder.Entity("AutomobilePlantDatabaseImplement.Models.Order", b =>
+ {
+ b.HasOne("AutomobilePlantDatabaseImplement.Models.Car", "Car")
+ .WithMany("Orders")
+ .HasForeignKey("CarId")
+ .OnDelete(DeleteBehavior.Cascade)
+ .IsRequired();
+
+ b.Navigation("Car");
+ });
+
+ modelBuilder.Entity("AutomobilePlantDatabaseImplement.Models.Car", b =>
+ {
+ b.Navigation("Components");
+
+ b.Navigation("Orders");
+ });
+
+ modelBuilder.Entity("AutomobilePlantDatabaseImplement.Models.Component", b =>
+ {
+ b.Navigation("CarComponents");
+ });
+#pragma warning restore 612, 618
+ }
+ }
+}
diff --git a/AutomobilePlantDatabaseImplement/Models/Car.cs b/AutomobilePlantDatabaseImplement/Models/Car.cs
new file mode 100644
index 0000000..b84c10e
--- /dev/null
+++ b/AutomobilePlantDatabaseImplement/Models/Car.cs
@@ -0,0 +1,101 @@
+using AutomobilePlantContracts.BindingModels;
+using AutomobilePlantContracts.ViewModels;
+using AutomobilePlantDataModels.Models;
+using System;
+using System.Collections.Generic;
+using System.ComponentModel.DataAnnotations.Schema;
+using System.ComponentModel.DataAnnotations;
+using System.Linq;
+using System.Reflection.Metadata;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace AutomobilePlantDatabaseImplement.Models
+{
+ public class Car : ICarModel
+ {
+ public int Id { get; private set; }
+ [Required]
+ public string CarName { get; private set; } = string.Empty;
+ [Required]
+ public double Price { get; private set; }
+
+ private Dictionary? _carComponents = null;
+
+ [NotMapped]
+ public Dictionary CarComponents
+ {
+ get
+ {
+ if (_carComponents == null)
+ {
+ _carComponents = Components.ToDictionary(recPC => recPC.ComponentId, recPC => (recPC.Component as IComponentModel, recPC.Count));
+ }
+ return _carComponents;
+ }
+ }
+
+ [ForeignKey("CarId")]
+ public virtual List Components { get; set; } = new();
+ [ForeignKey("CarId")]
+ public virtual List Orders { get; set; } = new();
+
+ public static Car? Create(AutomobilePlantDatabase context, CarBindingModel model)
+ {
+ var components = context.Components;
+ return new Car()
+ {
+ Id = model.Id,
+ CarName = model.CarName,
+ Price = model.Price,
+ Components = model.CarComponents.Select(x => new CarComponent
+ {
+ Component = context.Components.First(y => y.Id == x.Key),
+ Count = x.Value.Item2
+ }).ToList()
+ };
+ }
+
+ public void Update(CarBindingModel model)
+ {
+ CarName = model.CarName;
+ Price = model.Price;
+ }
+ public CarViewModel GetViewModel => new()
+ {
+ Id = Id,
+ CarName = CarName,
+ Price = Price,
+ CarComponents = CarComponents
+ };
+
+ public void UpdateComponents(AutomobilePlantDatabase context, CarBindingModel model)
+ {
+ var carComponents = context.CarComponents.Where(rec => rec.CarId == model.Id).ToList();
+ if (carComponents != null && carComponents.Count > 0)
+ { // удалили те, которых нет в модели
+ context.CarComponents.RemoveRange(carComponents.Where(rec => !model.CarComponents.ContainsKey(rec.ComponentId)));
+ context.SaveChanges();
+ // обновили количество у существующих записей
+ foreach (var updateComponent in carComponents)
+ {
+ updateComponent.Count = model.CarComponents[updateComponent.ComponentId].Item2;
+ model.CarComponents.Remove(updateComponent.ComponentId);
+ }
+ context.SaveChanges();
+ }
+ var car = context.Cars.First(x => x.Id == Id);
+ foreach (var pc in model.CarComponents)
+ {
+ context.CarComponents.Add(new CarComponent
+ {
+ Car = car,
+ Component = context.Components.First(x => x.Id == pc.Key),
+ Count = pc.Value.Item2
+ });
+ context.SaveChanges();
+ }
+ _carComponents = null;
+ }
+ }
+}
diff --git a/AutomobilePlantDatabaseImplement/Models/CarComponent.cs b/AutomobilePlantDatabaseImplement/Models/CarComponent.cs
new file mode 100644
index 0000000..3ded20f
--- /dev/null
+++ b/AutomobilePlantDatabaseImplement/Models/CarComponent.cs
@@ -0,0 +1,24 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel.DataAnnotations;
+using System.Linq;
+using System.Numerics;
+using System.Reflection.Metadata;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace AutomobilePlantDatabaseImplement.Models
+{
+ public class CarComponent
+ {
+ public int Id { get; set; }
+ [Required]
+ public int CarId { get; set; }
+ [Required]
+ public int ComponentId { get; set; }
+ [Required]
+ public int Count { get; set; }
+ public virtual Component Component { get; set; } = new();
+ public virtual Car Car { get; set; } = new();
+ }
+}
diff --git a/AutomobilePlantDatabaseImplement/Models/Component.cs b/AutomobilePlantDatabaseImplement/Models/Component.cs
new file mode 100644
index 0000000..aa0abd4
--- /dev/null
+++ b/AutomobilePlantDatabaseImplement/Models/Component.cs
@@ -0,0 +1,57 @@
+using AutomobilePlantContracts.BindingModels;
+using AutomobilePlantContracts.ViewModels;
+using AutomobilePlantDataModels.Models;
+using System;
+using System.Collections.Generic;
+using System.ComponentModel.DataAnnotations.Schema;
+using System.ComponentModel.DataAnnotations;
+using System.Linq;
+using System.Numerics;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace AutomobilePlantDatabaseImplement.Models
+{
+ public class Component : IComponentModel
+ {
+ public int Id { get; private set; }
+ [Required]
+ public string ComponentName { get; private set; } = String.Empty;
+
+ [Required]
+ public double Cost { get; set; }
+
+ [ForeignKey("ComponentId")]
+ public virtual List CarComponents { get; set; } = new();
+
+ public static Component? Create(ComponentBindingModel? model)
+ {
+ if (model == null)
+ {
+ return null;
+ }
+ return new Component()
+ {
+ Id = model.Id,
+ ComponentName = model.ComponentName,
+ Cost = model.Cost
+ };
+ }
+
+ public void Update(ComponentBindingModel? model)
+ {
+ if (model == null)
+ {
+ return;
+ }
+ ComponentName = model.ComponentName;
+ Cost = model.Cost;
+ }
+ public ComponentViewModel GetViewModel => new()
+ {
+ Id = Id,
+ ComponentName = ComponentName,
+ Cost = Cost
+ };
+ }
+}
diff --git a/AutomobilePlantDatabaseImplement/Models/Order.cs b/AutomobilePlantDatabaseImplement/Models/Order.cs
new file mode 100644
index 0000000..82e3e88
--- /dev/null
+++ b/AutomobilePlantDatabaseImplement/Models/Order.cs
@@ -0,0 +1,73 @@
+using AutomobilePlantContracts.BindingModels;
+using AutomobilePlantContracts.ViewModels;
+using AutomobilePlantDataModels.Enums;
+using AutomobilePlantDataModels.Models;
+using System;
+using System.Collections.Generic;
+using System.ComponentModel.DataAnnotations;
+using System.Linq;
+using System.Runtime.ConstrainedExecution;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace AutomobilePlantDatabaseImplement.Models
+{
+ public class Order : IOrderModel
+ {
+ public int Id { get; private set; }
+ [Required]
+ public int CarId { get; private set; }
+
+ [Required]
+ public int Count { get; private set; }
+ [Required]
+ public double Sum { get; private set; }
+ [Required]
+ public OrderStatus Status { get; private set; } = OrderStatus.Неизвестен;
+ [Required]
+ public DateTime DateCreate { get; private set; } = DateTime.Now;
+
+ public DateTime? DateImplement { get; private set; }
+ public virtual Car Car { get; private set; }
+
+ public static Order? Create(OrderBindingModel? model)
+ {
+ if (model == null)
+ {
+ return null;
+ }
+ return new Order
+ {
+ CarId = model.CarId,
+ Count = model.Count,
+ Sum = model.Sum,
+ Status = model.Status,
+ DateCreate = model.DateCreate,
+ DateImplement = model.DateImplement,
+ Id = model.Id,
+ };
+ }
+
+ public void Update(OrderBindingModel? model)
+ {
+ if (model == null)
+ {
+ return;
+ }
+ Status = model.Status;
+ DateImplement = model.DateImplement;
+ }
+
+ public OrderViewModel GetViewModel => new()
+ {
+ CarId = CarId,
+ Count = Count,
+ Sum = Sum,
+ DateCreate = DateCreate,
+ DateImplement = DateImplement,
+ Id = Id,
+ Status = Status,
+ CarName = Car.CarName
+ };
+ }
+}
diff --git a/AutomobilePlantFileImplement/AutomobilePlantFileImplement.csproj b/AutomobilePlantFileImplement/AutomobilePlantFileImplement.csproj
index a6820c2..ece6eef 100644
--- a/AutomobilePlantFileImplement/AutomobilePlantFileImplement.csproj
+++ b/AutomobilePlantFileImplement/AutomobilePlantFileImplement.csproj
@@ -1,11 +1,15 @@
-
+
- net6.0
+ net7.0
enable
enable
+
+
+
+
diff --git a/AutomobilePlantListImplements/AutomobilePlantListImplements.csproj b/AutomobilePlantListImplements/AutomobilePlantListImplements.csproj
index a6820c2..ece6eef 100644
--- a/AutomobilePlantListImplements/AutomobilePlantListImplements.csproj
+++ b/AutomobilePlantListImplements/AutomobilePlantListImplements.csproj
@@ -1,11 +1,15 @@
-
+
- net6.0
+ net7.0
enable
enable
+
+
+
+