Готовая 3 лаба
This commit is contained in:
parent
db3b7e4dbd
commit
346260bb3f
@ -56,7 +56,7 @@ namespace PlumbingRepairView
|
|||||||
Id = _id ?? 0,
|
Id = _id ?? 0,
|
||||||
StoreName = NameTextBox.Text,
|
StoreName = NameTextBox.Text,
|
||||||
StoreAdress = AdressTextBox.Text,
|
StoreAdress = AdressTextBox.Text,
|
||||||
OpeningDate = OpeningDatePicker.Value.Date,
|
OpeningDate = DateTime.SpecifyKind(OpeningDatePicker.Value.Date, DateTimeKind.Utc),
|
||||||
WorkMaxCount = (int)VolumeNumericUpDown.Value,
|
WorkMaxCount = (int)VolumeNumericUpDown.Value,
|
||||||
StoreWorks = _listStores
|
StoreWorks = _listStores
|
||||||
};
|
};
|
||||||
|
@ -93,7 +93,7 @@ namespace PlumbingRepairBusinessLogic.BusinessLogics
|
|||||||
|
|
||||||
if (model.Status == OrderStatus.Готов)
|
if (model.Status == OrderStatus.Готов)
|
||||||
{
|
{
|
||||||
model.DateImplement = DateTime.Now;
|
model.DateImplement = DateTime.SpecifyKind(DateTime.Now, DateTimeKind.Utc);
|
||||||
var work = _workStorage.GetElement(new() { Id = viewModel.WorkId });
|
var work = _workStorage.GetElement(new() { Id = viewModel.WorkId });
|
||||||
|
|
||||||
if (work == null)
|
if (work == null)
|
||||||
|
@ -54,7 +54,7 @@ namespace PlumbingRepairBusinessLogic.BusinessLogics
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
element.StoreWorks[work.Id] = (work, quantity);
|
element.StoreWorks[work.Id] = (work, quantity);
|
||||||
_logger.LogInformation("AddWork. Added {quantity} new package {package} to '{StoreName}' store", quantity, work.WorkName, element.StoreName);
|
_logger.LogInformation("AddWork. Added {quantity} new work {work} to '{StoreName}' store", quantity, work.WorkName, element.StoreName);
|
||||||
}
|
}
|
||||||
|
|
||||||
_storeStorage.Update(new()
|
_storeStorage.Update(new()
|
||||||
|
@ -12,7 +12,7 @@ namespace PlumbingRepairContracts.BindingModels
|
|||||||
public int Id { get; set; }
|
public int Id { get; set; }
|
||||||
public string StoreName { get; set; } = string.Empty;
|
public string StoreName { get; set; } = string.Empty;
|
||||||
public string StoreAdress { get; set; } = string.Empty;
|
public string StoreAdress { get; set; } = string.Empty;
|
||||||
public DateTime OpeningDate { get; set; } = DateTime.Now;
|
public DateTime OpeningDate { get; set; }
|
||||||
public Dictionary<int, (IWorkModel, int)> StoreWorks { get; set; } = new();
|
public Dictionary<int, (IWorkModel, int)> StoreWorks { get; set; } = new();
|
||||||
public int WorkMaxCount { get; set; }
|
public int WorkMaxCount { get; set; }
|
||||||
}
|
}
|
||||||
|
@ -17,7 +17,7 @@ namespace PlumbingRepairContracts.ViewModels
|
|||||||
[DisplayName("Адрес магазина")]
|
[DisplayName("Адрес магазина")]
|
||||||
public string StoreAdress { get; set; } = string.Empty;
|
public string StoreAdress { get; set; } = string.Empty;
|
||||||
[DisplayName("Дата открытия")]
|
[DisplayName("Дата открытия")]
|
||||||
public DateTime OpeningDate { get; set; } = DateTime.Now;
|
public DateTime OpeningDate { get; set; }
|
||||||
[DisplayName("Вместимость магазина")]
|
[DisplayName("Вместимость магазина")]
|
||||||
public int WorkMaxCount { get; set; }
|
public int WorkMaxCount { get; set; }
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,168 @@
|
|||||||
|
using Microsoft.EntityFrameworkCore;
|
||||||
|
using PlumbingRepairContracts.BindingModels;
|
||||||
|
using PlumbingRepairContracts.SearchModels;
|
||||||
|
using PlumbingRepairContracts.StoragesContracts;
|
||||||
|
using PlumbingRepairContracts.ViewModels;
|
||||||
|
using PlumbingRepairDataBaseImplement.Models;
|
||||||
|
using PlumbingRepairDataModels.Models;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace PlumbingRepairDataBaseImplement.Implements
|
||||||
|
{
|
||||||
|
public class StoreStorage : IStoreStorage
|
||||||
|
{
|
||||||
|
public StoreViewModel? Delete(StoreBindingModel model)
|
||||||
|
{
|
||||||
|
using var context = new PlumbingRepairDataBase();
|
||||||
|
|
||||||
|
var element = context.Stores
|
||||||
|
.Include(x => x.Works)
|
||||||
|
.FirstOrDefault(rec => rec.Id == model.Id);
|
||||||
|
|
||||||
|
if (element != null)
|
||||||
|
{
|
||||||
|
context.Stores.Remove(element);
|
||||||
|
context.SaveChanges();
|
||||||
|
|
||||||
|
return element.GetViewModel;
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
public StoreViewModel? GetElement(StoreSearchModel model)
|
||||||
|
{
|
||||||
|
if (string.IsNullOrEmpty(model.StoreName) && !model.Id.HasValue)
|
||||||
|
{
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
using var context = new PlumbingRepairDataBase();
|
||||||
|
|
||||||
|
return context.Stores
|
||||||
|
.Include(x => x.Works)
|
||||||
|
.ThenInclude(x => x.Work)
|
||||||
|
.FirstOrDefault(x => (!string.IsNullOrEmpty(model.StoreName) && x.StoreName == model.StoreName) || (model.Id.HasValue && x.Id == model.Id))
|
||||||
|
?.GetViewModel;
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<StoreViewModel> GetFilteredList(StoreSearchModel model)
|
||||||
|
{
|
||||||
|
if (string.IsNullOrEmpty(model.StoreName))
|
||||||
|
{
|
||||||
|
return new();
|
||||||
|
}
|
||||||
|
|
||||||
|
using var context = new PlumbingRepairDataBase();
|
||||||
|
|
||||||
|
return context.Stores
|
||||||
|
.Include(x => x.Works)
|
||||||
|
.ThenInclude(x => x.Work)
|
||||||
|
.Where(x => x.StoreName.Contains(model.StoreName))
|
||||||
|
.ToList()
|
||||||
|
.Select(x => x.GetViewModel)
|
||||||
|
.ToList();
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<StoreViewModel> GetFullList()
|
||||||
|
{
|
||||||
|
using var context = new PlumbingRepairDataBase();
|
||||||
|
return context.Stores
|
||||||
|
.Include(x => x.Works)
|
||||||
|
.ThenInclude(x => x.Work)
|
||||||
|
.ToList()
|
||||||
|
.Select(x => x.GetViewModel)
|
||||||
|
.ToList();
|
||||||
|
}
|
||||||
|
|
||||||
|
public StoreViewModel? Insert(StoreBindingModel model)
|
||||||
|
{
|
||||||
|
using var context = new PlumbingRepairDataBase();
|
||||||
|
var newStore = Store.Create(context, model);
|
||||||
|
if (newStore == null)
|
||||||
|
{
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
context.Stores.Add(newStore);
|
||||||
|
context.SaveChanges();
|
||||||
|
return newStore.GetViewModel;
|
||||||
|
}
|
||||||
|
|
||||||
|
public bool SellWork(IWorkModel model, int quantity)
|
||||||
|
{
|
||||||
|
using var context = new PlumbingRepairDataBase();
|
||||||
|
using var transaction = context.Database.BeginTransaction();
|
||||||
|
try
|
||||||
|
{
|
||||||
|
foreach (var store in context.Stores
|
||||||
|
.Include(x => x.Works)
|
||||||
|
.ThenInclude(x => x.Work)
|
||||||
|
.ToList()
|
||||||
|
.Where(x => x.StoreWorks.ContainsKey(model.Id)))
|
||||||
|
{
|
||||||
|
int countInCurrentStore = store.StoreWorks[model.Id].Item2;
|
||||||
|
if (countInCurrentStore <= quantity)
|
||||||
|
{
|
||||||
|
var elem = context.StoreWorks
|
||||||
|
.Where(x => x.WorkId == model.Id)
|
||||||
|
.FirstOrDefault(x => x.StoreId == store.Id);
|
||||||
|
context.StoreWorks.Remove(elem);
|
||||||
|
store.StoreWorks.Remove(model.Id);
|
||||||
|
quantity -= countInCurrentStore;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
store.StoreWorks[model.Id] = (store.StoreWorks[model.Id].Item1, countInCurrentStore - quantity);
|
||||||
|
quantity = 0;
|
||||||
|
store.UpdateWorks(context, new()
|
||||||
|
{
|
||||||
|
Id = store.Id,
|
||||||
|
StoreWorks = store.StoreWorks,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (quantity == 0)
|
||||||
|
{
|
||||||
|
context.SaveChanges();
|
||||||
|
transaction.Commit();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
transaction.Rollback();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
catch
|
||||||
|
{
|
||||||
|
transaction.Rollback();
|
||||||
|
throw;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public StoreViewModel? Update(StoreBindingModel model)
|
||||||
|
{
|
||||||
|
using var context = new PlumbingRepairDataBase();
|
||||||
|
using var transaction = context.Database.BeginTransaction();
|
||||||
|
try
|
||||||
|
{
|
||||||
|
var store = context.Stores.FirstOrDefault(rec => rec.Id == model.Id);
|
||||||
|
if (store == null)
|
||||||
|
{
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
store.Update(model);
|
||||||
|
context.SaveChanges();
|
||||||
|
store.UpdateWorks(context, model);
|
||||||
|
transaction.Commit();
|
||||||
|
return store.GetViewModel;
|
||||||
|
}
|
||||||
|
catch
|
||||||
|
{
|
||||||
|
transaction.Rollback();
|
||||||
|
throw;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -1,175 +1,252 @@
|
|||||||
// <auto-generated />
|
// <auto-generated />
|
||||||
using System;
|
using System;
|
||||||
using Microsoft.EntityFrameworkCore;
|
using Microsoft.EntityFrameworkCore;
|
||||||
using Microsoft.EntityFrameworkCore.Infrastructure;
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
using Microsoft.EntityFrameworkCore.Migrations;
|
||||||
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
||||||
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
||||||
using PlumbingRepairDataBaseImplement;
|
using PlumbingRepairDataBaseImplement;
|
||||||
|
|
||||||
#nullable disable
|
#nullable disable
|
||||||
|
|
||||||
namespace PlumbingRepairDataBaseImplement.Migrations
|
namespace PlumbingRepairDataBaseImplement.Migrations
|
||||||
{
|
{
|
||||||
[DbContext(typeof(PlumbingRepairDataBase))]
|
[DbContext(typeof(PlumbingRepairDataBase))]
|
||||||
[Migration("20240326163755_Migration1")]
|
[Migration("20240506071751_InitialCreate")]
|
||||||
partial class Migration1
|
partial class InitialCreate
|
||||||
{
|
{
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
||||||
{
|
{
|
||||||
#pragma warning disable 612, 618
|
#pragma warning disable 612, 618
|
||||||
modelBuilder
|
modelBuilder
|
||||||
.HasAnnotation("ProductVersion", "7.0.17")
|
.HasAnnotation("ProductVersion", "7.0.17")
|
||||||
.HasAnnotation("Relational:MaxIdentifierLength", 63);
|
.HasAnnotation("Relational:MaxIdentifierLength", 63);
|
||||||
|
|
||||||
NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder);
|
NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder);
|
||||||
|
|
||||||
modelBuilder.Entity("PlumbingRepairDataBaseImplement.Models.Component", b =>
|
modelBuilder.Entity("PlumbingRepairDataBaseImplement.Models.Component", b =>
|
||||||
{
|
{
|
||||||
b.Property<int>("Id")
|
b.Property<int>("Id")
|
||||||
.ValueGeneratedOnAdd()
|
.ValueGeneratedOnAdd()
|
||||||
.HasColumnType("integer");
|
.HasColumnType("integer");
|
||||||
|
|
||||||
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
|
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
|
||||||
|
|
||||||
b.Property<string>("ComponentName")
|
b.Property<string>("ComponentName")
|
||||||
.IsRequired()
|
.IsRequired()
|
||||||
.HasColumnType("text");
|
.HasColumnType("text");
|
||||||
|
|
||||||
b.Property<double>("Cost")
|
b.Property<double>("Cost")
|
||||||
.HasColumnType("double precision");
|
.HasColumnType("double precision");
|
||||||
|
|
||||||
b.HasKey("Id");
|
b.HasKey("Id");
|
||||||
|
|
||||||
b.ToTable("Components");
|
b.ToTable("Components");
|
||||||
});
|
});
|
||||||
|
|
||||||
modelBuilder.Entity("PlumbingRepairDataBaseImplement.Models.Order", b =>
|
modelBuilder.Entity("PlumbingRepairDataBaseImplement.Models.Order", b =>
|
||||||
{
|
{
|
||||||
b.Property<int>("Id")
|
b.Property<int>("Id")
|
||||||
.ValueGeneratedOnAdd()
|
.ValueGeneratedOnAdd()
|
||||||
.HasColumnType("integer");
|
.HasColumnType("integer");
|
||||||
|
|
||||||
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
|
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
|
||||||
|
|
||||||
b.Property<int>("Count")
|
b.Property<int>("Count")
|
||||||
.HasColumnType("integer");
|
.HasColumnType("integer");
|
||||||
|
|
||||||
b.Property<DateTime>("DateCreate")
|
b.Property<DateTime>("DateCreate")
|
||||||
.HasColumnType("timestamp with time zone");
|
.HasColumnType("timestamp with time zone");
|
||||||
|
|
||||||
b.Property<DateTime?>("DateImplement")
|
b.Property<DateTime?>("DateImplement")
|
||||||
.HasColumnType("timestamp with time zone");
|
.HasColumnType("timestamp with time zone");
|
||||||
|
|
||||||
b.Property<int>("Status")
|
b.Property<int>("Status")
|
||||||
.HasColumnType("integer");
|
.HasColumnType("integer");
|
||||||
|
|
||||||
b.Property<double>("Sum")
|
b.Property<double>("Sum")
|
||||||
.HasColumnType("double precision");
|
.HasColumnType("double precision");
|
||||||
|
|
||||||
b.Property<int>("WorkId")
|
b.Property<int>("WorkId")
|
||||||
.HasColumnType("integer");
|
.HasColumnType("integer");
|
||||||
|
|
||||||
b.Property<string>("WorkName")
|
b.Property<string>("WorkName")
|
||||||
.IsRequired()
|
.IsRequired()
|
||||||
.HasColumnType("text");
|
.HasColumnType("text");
|
||||||
|
|
||||||
b.HasKey("Id");
|
b.HasKey("Id");
|
||||||
|
|
||||||
b.HasIndex("WorkId");
|
b.HasIndex("WorkId");
|
||||||
|
|
||||||
b.ToTable("Orders");
|
b.ToTable("Orders");
|
||||||
});
|
});
|
||||||
|
|
||||||
modelBuilder.Entity("PlumbingRepairDataBaseImplement.Models.Work", b =>
|
modelBuilder.Entity("PlumbingRepairDataBaseImplement.Models.Store", b =>
|
||||||
{
|
{
|
||||||
b.Property<int>("Id")
|
b.Property<int>("Id")
|
||||||
.ValueGeneratedOnAdd()
|
.ValueGeneratedOnAdd()
|
||||||
.HasColumnType("integer");
|
.HasColumnType("integer");
|
||||||
|
|
||||||
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
|
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
|
||||||
|
|
||||||
b.Property<double>("Price")
|
b.Property<DateTime>("OpeningDate")
|
||||||
.HasColumnType("double precision");
|
.HasColumnType("timestamp with time zone");
|
||||||
|
|
||||||
b.Property<string>("WorkName")
|
b.Property<string>("StoreAdress")
|
||||||
.IsRequired()
|
.IsRequired()
|
||||||
.HasColumnType("text");
|
.HasColumnType("text");
|
||||||
|
|
||||||
b.HasKey("Id");
|
b.Property<string>("StoreName")
|
||||||
|
.IsRequired()
|
||||||
b.ToTable("Works");
|
.HasColumnType("text");
|
||||||
});
|
|
||||||
|
b.Property<int>("WorkMaxCount")
|
||||||
modelBuilder.Entity("PlumbingRepairDataBaseImplement.Models.WorkComponent", b =>
|
.HasColumnType("integer");
|
||||||
{
|
|
||||||
b.Property<int>("Id")
|
b.HasKey("Id");
|
||||||
.ValueGeneratedOnAdd()
|
|
||||||
.HasColumnType("integer");
|
b.ToTable("Stores");
|
||||||
|
});
|
||||||
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
|
|
||||||
|
modelBuilder.Entity("PlumbingRepairDataBaseImplement.Models.StoreWork", b =>
|
||||||
b.Property<int>("ComponentId")
|
{
|
||||||
.HasColumnType("integer");
|
b.Property<int>("Id")
|
||||||
|
.ValueGeneratedOnAdd()
|
||||||
b.Property<int>("Count")
|
.HasColumnType("integer");
|
||||||
.HasColumnType("integer");
|
|
||||||
|
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
|
||||||
b.Property<int>("WorkId")
|
|
||||||
.HasColumnType("integer");
|
b.Property<int>("Count")
|
||||||
|
.HasColumnType("integer");
|
||||||
b.HasKey("Id");
|
|
||||||
|
b.Property<int>("StoreId")
|
||||||
b.HasIndex("ComponentId");
|
.HasColumnType("integer");
|
||||||
|
|
||||||
b.HasIndex("WorkId");
|
b.Property<int>("WorkId")
|
||||||
|
.HasColumnType("integer");
|
||||||
b.ToTable("WorkComponents");
|
|
||||||
});
|
b.HasKey("Id");
|
||||||
|
|
||||||
modelBuilder.Entity("PlumbingRepairDataBaseImplement.Models.Order", b =>
|
b.HasIndex("StoreId");
|
||||||
{
|
|
||||||
b.HasOne("PlumbingRepairDataBaseImplement.Models.Work", "Work")
|
b.HasIndex("WorkId");
|
||||||
.WithMany("Orders")
|
|
||||||
.HasForeignKey("WorkId")
|
b.ToTable("StoreWorks");
|
||||||
.OnDelete(DeleteBehavior.Cascade)
|
});
|
||||||
.IsRequired();
|
|
||||||
|
modelBuilder.Entity("PlumbingRepairDataBaseImplement.Models.Work", b =>
|
||||||
b.Navigation("Work");
|
{
|
||||||
});
|
b.Property<int>("Id")
|
||||||
|
.ValueGeneratedOnAdd()
|
||||||
modelBuilder.Entity("PlumbingRepairDataBaseImplement.Models.WorkComponent", b =>
|
.HasColumnType("integer");
|
||||||
{
|
|
||||||
b.HasOne("PlumbingRepairDataBaseImplement.Models.Component", "Component")
|
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
|
||||||
.WithMany("WorkComponents")
|
|
||||||
.HasForeignKey("ComponentId")
|
b.Property<double>("Price")
|
||||||
.OnDelete(DeleteBehavior.Cascade)
|
.HasColumnType("double precision");
|
||||||
.IsRequired();
|
|
||||||
|
b.Property<string>("WorkName")
|
||||||
b.HasOne("PlumbingRepairDataBaseImplement.Models.Work", "Work")
|
.IsRequired()
|
||||||
.WithMany("Components")
|
.HasColumnType("text");
|
||||||
.HasForeignKey("WorkId")
|
|
||||||
.OnDelete(DeleteBehavior.Cascade)
|
b.HasKey("Id");
|
||||||
.IsRequired();
|
|
||||||
|
b.ToTable("Works");
|
||||||
b.Navigation("Component");
|
});
|
||||||
|
|
||||||
b.Navigation("Work");
|
modelBuilder.Entity("PlumbingRepairDataBaseImplement.Models.WorkComponent", b =>
|
||||||
});
|
{
|
||||||
|
b.Property<int>("Id")
|
||||||
modelBuilder.Entity("PlumbingRepairDataBaseImplement.Models.Component", b =>
|
.ValueGeneratedOnAdd()
|
||||||
{
|
.HasColumnType("integer");
|
||||||
b.Navigation("WorkComponents");
|
|
||||||
});
|
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
|
||||||
|
|
||||||
modelBuilder.Entity("PlumbingRepairDataBaseImplement.Models.Work", b =>
|
b.Property<int>("ComponentId")
|
||||||
{
|
.HasColumnType("integer");
|
||||||
b.Navigation("Components");
|
|
||||||
|
b.Property<int>("Count")
|
||||||
b.Navigation("Orders");
|
.HasColumnType("integer");
|
||||||
});
|
|
||||||
#pragma warning restore 612, 618
|
b.Property<int>("WorkId")
|
||||||
}
|
.HasColumnType("integer");
|
||||||
}
|
|
||||||
}
|
b.HasKey("Id");
|
||||||
|
|
||||||
|
b.HasIndex("ComponentId");
|
||||||
|
|
||||||
|
b.HasIndex("WorkId");
|
||||||
|
|
||||||
|
b.ToTable("WorkComponents");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("PlumbingRepairDataBaseImplement.Models.Order", b =>
|
||||||
|
{
|
||||||
|
b.HasOne("PlumbingRepairDataBaseImplement.Models.Work", "Work")
|
||||||
|
.WithMany("Orders")
|
||||||
|
.HasForeignKey("WorkId")
|
||||||
|
.OnDelete(DeleteBehavior.Cascade)
|
||||||
|
.IsRequired();
|
||||||
|
|
||||||
|
b.Navigation("Work");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("PlumbingRepairDataBaseImplement.Models.StoreWork", b =>
|
||||||
|
{
|
||||||
|
b.HasOne("PlumbingRepairDataBaseImplement.Models.Store", "Store")
|
||||||
|
.WithMany("Works")
|
||||||
|
.HasForeignKey("StoreId")
|
||||||
|
.OnDelete(DeleteBehavior.Cascade)
|
||||||
|
.IsRequired();
|
||||||
|
|
||||||
|
b.HasOne("PlumbingRepairDataBaseImplement.Models.Work", "Work")
|
||||||
|
.WithMany()
|
||||||
|
.HasForeignKey("WorkId")
|
||||||
|
.OnDelete(DeleteBehavior.Cascade)
|
||||||
|
.IsRequired();
|
||||||
|
|
||||||
|
b.Navigation("Store");
|
||||||
|
|
||||||
|
b.Navigation("Work");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("PlumbingRepairDataBaseImplement.Models.WorkComponent", b =>
|
||||||
|
{
|
||||||
|
b.HasOne("PlumbingRepairDataBaseImplement.Models.Component", "Component")
|
||||||
|
.WithMany("WorkComponents")
|
||||||
|
.HasForeignKey("ComponentId")
|
||||||
|
.OnDelete(DeleteBehavior.Cascade)
|
||||||
|
.IsRequired();
|
||||||
|
|
||||||
|
b.HasOne("PlumbingRepairDataBaseImplement.Models.Work", "Work")
|
||||||
|
.WithMany("Components")
|
||||||
|
.HasForeignKey("WorkId")
|
||||||
|
.OnDelete(DeleteBehavior.Cascade)
|
||||||
|
.IsRequired();
|
||||||
|
|
||||||
|
b.Navigation("Component");
|
||||||
|
|
||||||
|
b.Navigation("Work");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("PlumbingRepairDataBaseImplement.Models.Component", b =>
|
||||||
|
{
|
||||||
|
b.Navigation("WorkComponents");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("PlumbingRepairDataBaseImplement.Models.Store", b =>
|
||||||
|
{
|
||||||
|
b.Navigation("Works");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("PlumbingRepairDataBaseImplement.Models.Work", b =>
|
||||||
|
{
|
||||||
|
b.Navigation("Components");
|
||||||
|
|
||||||
|
b.Navigation("Orders");
|
||||||
|
});
|
||||||
|
#pragma warning restore 612, 618
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -1,127 +1,186 @@
|
|||||||
using System;
|
using System;
|
||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
using Microsoft.EntityFrameworkCore.Migrations;
|
||||||
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
||||||
|
|
||||||
#nullable disable
|
#nullable disable
|
||||||
|
|
||||||
namespace PlumbingRepairDataBaseImplement.Migrations
|
namespace PlumbingRepairDataBaseImplement.Migrations
|
||||||
{
|
{
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public partial class Migration1 : Migration
|
public partial class InitialCreate : Migration
|
||||||
{
|
{
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
protected override void Up(MigrationBuilder migrationBuilder)
|
protected override void Up(MigrationBuilder migrationBuilder)
|
||||||
{
|
{
|
||||||
migrationBuilder.CreateTable(
|
migrationBuilder.CreateTable(
|
||||||
name: "Components",
|
name: "Components",
|
||||||
columns: table => new
|
columns: table => new
|
||||||
{
|
{
|
||||||
Id = table.Column<int>(type: "integer", nullable: false)
|
Id = table.Column<int>(type: "integer", nullable: false)
|
||||||
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
||||||
ComponentName = table.Column<string>(type: "text", nullable: false),
|
ComponentName = table.Column<string>(type: "text", nullable: false),
|
||||||
Cost = table.Column<double>(type: "double precision", nullable: false)
|
Cost = table.Column<double>(type: "double precision", nullable: false)
|
||||||
},
|
},
|
||||||
constraints: table =>
|
constraints: table =>
|
||||||
{
|
{
|
||||||
table.PrimaryKey("PK_Components", x => x.Id);
|
table.PrimaryKey("PK_Components", x => x.Id);
|
||||||
});
|
});
|
||||||
|
|
||||||
migrationBuilder.CreateTable(
|
migrationBuilder.CreateTable(
|
||||||
name: "Works",
|
name: "Stores",
|
||||||
columns: table => new
|
columns: table => new
|
||||||
{
|
{
|
||||||
Id = table.Column<int>(type: "integer", nullable: false)
|
Id = table.Column<int>(type: "integer", nullable: false)
|
||||||
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
||||||
WorkName = table.Column<string>(type: "text", nullable: false),
|
StoreName = table.Column<string>(type: "text", nullable: false),
|
||||||
Price = table.Column<double>(type: "double precision", nullable: false)
|
StoreAdress = table.Column<string>(type: "text", nullable: false),
|
||||||
},
|
OpeningDate = table.Column<DateTime>(type: "timestamp with time zone", nullable: false),
|
||||||
constraints: table =>
|
WorkMaxCount = table.Column<int>(type: "integer", nullable: false)
|
||||||
{
|
},
|
||||||
table.PrimaryKey("PK_Works", x => x.Id);
|
constraints: table =>
|
||||||
});
|
{
|
||||||
|
table.PrimaryKey("PK_Stores", x => x.Id);
|
||||||
migrationBuilder.CreateTable(
|
});
|
||||||
name: "Orders",
|
|
||||||
columns: table => new
|
migrationBuilder.CreateTable(
|
||||||
{
|
name: "Works",
|
||||||
Id = table.Column<int>(type: "integer", nullable: false)
|
columns: table => new
|
||||||
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
{
|
||||||
WorkId = table.Column<int>(type: "integer", nullable: false),
|
Id = table.Column<int>(type: "integer", nullable: false)
|
||||||
WorkName = table.Column<string>(type: "text", nullable: false),
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
||||||
Count = table.Column<int>(type: "integer", nullable: false),
|
WorkName = table.Column<string>(type: "text", nullable: false),
|
||||||
Sum = table.Column<double>(type: "double precision", nullable: false),
|
Price = table.Column<double>(type: "double precision", nullable: false)
|
||||||
Status = table.Column<int>(type: "integer", nullable: false),
|
},
|
||||||
DateCreate = table.Column<DateTime>(type: "timestamp with time zone", nullable: false),
|
constraints: table =>
|
||||||
DateImplement = table.Column<DateTime>(type: "timestamp with time zone", nullable: true)
|
{
|
||||||
},
|
table.PrimaryKey("PK_Works", x => x.Id);
|
||||||
constraints: table =>
|
});
|
||||||
{
|
|
||||||
table.PrimaryKey("PK_Orders", x => x.Id);
|
migrationBuilder.CreateTable(
|
||||||
table.ForeignKey(
|
name: "Orders",
|
||||||
name: "FK_Orders_Works_WorkId",
|
columns: table => new
|
||||||
column: x => x.WorkId,
|
{
|
||||||
principalTable: "Works",
|
Id = table.Column<int>(type: "integer", nullable: false)
|
||||||
principalColumn: "Id",
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
||||||
onDelete: ReferentialAction.Cascade);
|
WorkId = table.Column<int>(type: "integer", nullable: false),
|
||||||
});
|
WorkName = table.Column<string>(type: "text", nullable: false),
|
||||||
|
Count = table.Column<int>(type: "integer", nullable: false),
|
||||||
migrationBuilder.CreateTable(
|
Sum = table.Column<double>(type: "double precision", nullable: false),
|
||||||
name: "WorkComponents",
|
Status = table.Column<int>(type: "integer", nullable: false),
|
||||||
columns: table => new
|
DateCreate = table.Column<DateTime>(type: "timestamp with time zone", nullable: false),
|
||||||
{
|
DateImplement = table.Column<DateTime>(type: "timestamp with time zone", nullable: true)
|
||||||
Id = table.Column<int>(type: "integer", nullable: false)
|
},
|
||||||
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
constraints: table =>
|
||||||
WorkId = table.Column<int>(type: "integer", nullable: false),
|
{
|
||||||
ComponentId = table.Column<int>(type: "integer", nullable: false),
|
table.PrimaryKey("PK_Orders", x => x.Id);
|
||||||
Count = table.Column<int>(type: "integer", nullable: false)
|
table.ForeignKey(
|
||||||
},
|
name: "FK_Orders_Works_WorkId",
|
||||||
constraints: table =>
|
column: x => x.WorkId,
|
||||||
{
|
principalTable: "Works",
|
||||||
table.PrimaryKey("PK_WorkComponents", x => x.Id);
|
principalColumn: "Id",
|
||||||
table.ForeignKey(
|
onDelete: ReferentialAction.Cascade);
|
||||||
name: "FK_WorkComponents_Components_ComponentId",
|
});
|
||||||
column: x => x.ComponentId,
|
|
||||||
principalTable: "Components",
|
migrationBuilder.CreateTable(
|
||||||
principalColumn: "Id",
|
name: "StoreWorks",
|
||||||
onDelete: ReferentialAction.Cascade);
|
columns: table => new
|
||||||
table.ForeignKey(
|
{
|
||||||
name: "FK_WorkComponents_Works_WorkId",
|
Id = table.Column<int>(type: "integer", nullable: false)
|
||||||
column: x => x.WorkId,
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
||||||
principalTable: "Works",
|
WorkId = table.Column<int>(type: "integer", nullable: false),
|
||||||
principalColumn: "Id",
|
StoreId = table.Column<int>(type: "integer", nullable: false),
|
||||||
onDelete: ReferentialAction.Cascade);
|
Count = table.Column<int>(type: "integer", nullable: false)
|
||||||
});
|
},
|
||||||
|
constraints: table =>
|
||||||
migrationBuilder.CreateIndex(
|
{
|
||||||
name: "IX_Orders_WorkId",
|
table.PrimaryKey("PK_StoreWorks", x => x.Id);
|
||||||
table: "Orders",
|
table.ForeignKey(
|
||||||
column: "WorkId");
|
name: "FK_StoreWorks_Stores_StoreId",
|
||||||
|
column: x => x.StoreId,
|
||||||
migrationBuilder.CreateIndex(
|
principalTable: "Stores",
|
||||||
name: "IX_WorkComponents_ComponentId",
|
principalColumn: "Id",
|
||||||
table: "WorkComponents",
|
onDelete: ReferentialAction.Cascade);
|
||||||
column: "ComponentId");
|
table.ForeignKey(
|
||||||
|
name: "FK_StoreWorks_Works_WorkId",
|
||||||
migrationBuilder.CreateIndex(
|
column: x => x.WorkId,
|
||||||
name: "IX_WorkComponents_WorkId",
|
principalTable: "Works",
|
||||||
table: "WorkComponents",
|
principalColumn: "Id",
|
||||||
column: "WorkId");
|
onDelete: ReferentialAction.Cascade);
|
||||||
}
|
});
|
||||||
|
|
||||||
/// <inheritdoc />
|
migrationBuilder.CreateTable(
|
||||||
protected override void Down(MigrationBuilder migrationBuilder)
|
name: "WorkComponents",
|
||||||
{
|
columns: table => new
|
||||||
migrationBuilder.DropTable(
|
{
|
||||||
name: "Orders");
|
Id = table.Column<int>(type: "integer", nullable: false)
|
||||||
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
||||||
migrationBuilder.DropTable(
|
WorkId = table.Column<int>(type: "integer", nullable: false),
|
||||||
name: "WorkComponents");
|
ComponentId = table.Column<int>(type: "integer", nullable: false),
|
||||||
|
Count = table.Column<int>(type: "integer", nullable: false)
|
||||||
migrationBuilder.DropTable(
|
},
|
||||||
name: "Components");
|
constraints: table =>
|
||||||
|
{
|
||||||
migrationBuilder.DropTable(
|
table.PrimaryKey("PK_WorkComponents", x => x.Id);
|
||||||
name: "Works");
|
table.ForeignKey(
|
||||||
}
|
name: "FK_WorkComponents_Components_ComponentId",
|
||||||
}
|
column: x => x.ComponentId,
|
||||||
}
|
principalTable: "Components",
|
||||||
|
principalColumn: "Id",
|
||||||
|
onDelete: ReferentialAction.Cascade);
|
||||||
|
table.ForeignKey(
|
||||||
|
name: "FK_WorkComponents_Works_WorkId",
|
||||||
|
column: x => x.WorkId,
|
||||||
|
principalTable: "Works",
|
||||||
|
principalColumn: "Id",
|
||||||
|
onDelete: ReferentialAction.Cascade);
|
||||||
|
});
|
||||||
|
|
||||||
|
migrationBuilder.CreateIndex(
|
||||||
|
name: "IX_Orders_WorkId",
|
||||||
|
table: "Orders",
|
||||||
|
column: "WorkId");
|
||||||
|
|
||||||
|
migrationBuilder.CreateIndex(
|
||||||
|
name: "IX_StoreWorks_StoreId",
|
||||||
|
table: "StoreWorks",
|
||||||
|
column: "StoreId");
|
||||||
|
|
||||||
|
migrationBuilder.CreateIndex(
|
||||||
|
name: "IX_StoreWorks_WorkId",
|
||||||
|
table: "StoreWorks",
|
||||||
|
column: "WorkId");
|
||||||
|
|
||||||
|
migrationBuilder.CreateIndex(
|
||||||
|
name: "IX_WorkComponents_ComponentId",
|
||||||
|
table: "WorkComponents",
|
||||||
|
column: "ComponentId");
|
||||||
|
|
||||||
|
migrationBuilder.CreateIndex(
|
||||||
|
name: "IX_WorkComponents_WorkId",
|
||||||
|
table: "WorkComponents",
|
||||||
|
column: "WorkId");
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <inheritdoc />
|
||||||
|
protected override void Down(MigrationBuilder migrationBuilder)
|
||||||
|
{
|
||||||
|
migrationBuilder.DropTable(
|
||||||
|
name: "Orders");
|
||||||
|
|
||||||
|
migrationBuilder.DropTable(
|
||||||
|
name: "StoreWorks");
|
||||||
|
|
||||||
|
migrationBuilder.DropTable(
|
||||||
|
name: "WorkComponents");
|
||||||
|
|
||||||
|
migrationBuilder.DropTable(
|
||||||
|
name: "Stores");
|
||||||
|
|
||||||
|
migrationBuilder.DropTable(
|
||||||
|
name: "Components");
|
||||||
|
|
||||||
|
migrationBuilder.DropTable(
|
||||||
|
name: "Works");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -79,6 +79,59 @@ namespace PlumbingRepairDataBaseImplement.Migrations
|
|||||||
b.ToTable("Orders");
|
b.ToTable("Orders");
|
||||||
});
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("PlumbingRepairDataBaseImplement.Models.Store", b =>
|
||||||
|
{
|
||||||
|
b.Property<int>("Id")
|
||||||
|
.ValueGeneratedOnAdd()
|
||||||
|
.HasColumnType("integer");
|
||||||
|
|
||||||
|
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
|
||||||
|
|
||||||
|
b.Property<DateTime>("OpeningDate")
|
||||||
|
.HasColumnType("timestamp with time zone");
|
||||||
|
|
||||||
|
b.Property<string>("StoreAdress")
|
||||||
|
.IsRequired()
|
||||||
|
.HasColumnType("text");
|
||||||
|
|
||||||
|
b.Property<string>("StoreName")
|
||||||
|
.IsRequired()
|
||||||
|
.HasColumnType("text");
|
||||||
|
|
||||||
|
b.Property<int>("WorkMaxCount")
|
||||||
|
.HasColumnType("integer");
|
||||||
|
|
||||||
|
b.HasKey("Id");
|
||||||
|
|
||||||
|
b.ToTable("Stores");
|
||||||
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("PlumbingRepairDataBaseImplement.Models.StoreWork", b =>
|
||||||
|
{
|
||||||
|
b.Property<int>("Id")
|
||||||
|
.ValueGeneratedOnAdd()
|
||||||
|
.HasColumnType("integer");
|
||||||
|
|
||||||
|
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
|
||||||
|
|
||||||
|
b.Property<int>("Count")
|
||||||
|
.HasColumnType("integer");
|
||||||
|
|
||||||
|
b.Property<int>("StoreId")
|
||||||
|
.HasColumnType("integer");
|
||||||
|
|
||||||
|
b.Property<int>("WorkId")
|
||||||
|
.HasColumnType("integer");
|
||||||
|
|
||||||
|
b.HasKey("Id");
|
||||||
|
|
||||||
|
b.HasIndex("StoreId");
|
||||||
|
|
||||||
|
b.HasIndex("WorkId");
|
||||||
|
|
||||||
|
b.ToTable("StoreWorks");
|
||||||
|
});
|
||||||
|
|
||||||
modelBuilder.Entity("PlumbingRepairDataBaseImplement.Models.Work", b =>
|
modelBuilder.Entity("PlumbingRepairDataBaseImplement.Models.Work", b =>
|
||||||
{
|
{
|
||||||
b.Property<int>("Id")
|
b.Property<int>("Id")
|
||||||
@ -136,6 +189,25 @@ namespace PlumbingRepairDataBaseImplement.Migrations
|
|||||||
b.Navigation("Work");
|
b.Navigation("Work");
|
||||||
});
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("PlumbingRepairDataBaseImplement.Models.StoreWork", b =>
|
||||||
|
{
|
||||||
|
b.HasOne("PlumbingRepairDataBaseImplement.Models.Store", "Store")
|
||||||
|
.WithMany("Works")
|
||||||
|
.HasForeignKey("StoreId")
|
||||||
|
.OnDelete(DeleteBehavior.Cascade)
|
||||||
|
.IsRequired();
|
||||||
|
|
||||||
|
b.HasOne("PlumbingRepairDataBaseImplement.Models.Work", "Work")
|
||||||
|
.WithMany()
|
||||||
|
.HasForeignKey("WorkId")
|
||||||
|
.OnDelete(DeleteBehavior.Cascade)
|
||||||
|
.IsRequired();
|
||||||
|
|
||||||
|
b.Navigation("Store");
|
||||||
|
|
||||||
|
b.Navigation("Work");
|
||||||
|
});
|
||||||
|
|
||||||
modelBuilder.Entity("PlumbingRepairDataBaseImplement.Models.WorkComponent", b =>
|
modelBuilder.Entity("PlumbingRepairDataBaseImplement.Models.WorkComponent", b =>
|
||||||
{
|
{
|
||||||
b.HasOne("PlumbingRepairDataBaseImplement.Models.Component", "Component")
|
b.HasOne("PlumbingRepairDataBaseImplement.Models.Component", "Component")
|
||||||
@ -160,6 +232,11 @@ namespace PlumbingRepairDataBaseImplement.Migrations
|
|||||||
b.Navigation("WorkComponents");
|
b.Navigation("WorkComponents");
|
||||||
});
|
});
|
||||||
|
|
||||||
|
modelBuilder.Entity("PlumbingRepairDataBaseImplement.Models.Store", b =>
|
||||||
|
{
|
||||||
|
b.Navigation("Works");
|
||||||
|
});
|
||||||
|
|
||||||
modelBuilder.Entity("PlumbingRepairDataBaseImplement.Models.Work", b =>
|
modelBuilder.Entity("PlumbingRepairDataBaseImplement.Models.Work", b =>
|
||||||
{
|
{
|
||||||
b.Navigation("Components");
|
b.Navigation("Components");
|
||||||
|
110
PlumbingRepair/PlumbingRepairDataBaseImplement/Models/Store.cs
Normal file
110
PlumbingRepair/PlumbingRepairDataBaseImplement/Models/Store.cs
Normal file
@ -0,0 +1,110 @@
|
|||||||
|
using PlumbingRepairContracts.BindingModels;
|
||||||
|
using PlumbingRepairContracts.ViewModels;
|
||||||
|
using PlumbingRepairDataModels.Models;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
|
using System.ComponentModel.DataAnnotations;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace PlumbingRepairDataBaseImplement.Models
|
||||||
|
{
|
||||||
|
public class Store : IStoreModel
|
||||||
|
{
|
||||||
|
[Required]
|
||||||
|
public string StoreName { get; private set; } = string.Empty;
|
||||||
|
[Required]
|
||||||
|
public string StoreAdress { get; private set; } = string.Empty;
|
||||||
|
[Required]
|
||||||
|
public DateTime OpeningDate { get; private set; }
|
||||||
|
[Required]
|
||||||
|
public int WorkMaxCount { get; private set; }
|
||||||
|
|
||||||
|
public int Id { get; private set; }
|
||||||
|
|
||||||
|
|
||||||
|
private Dictionary<int, (IWorkModel, int)> _storeWorks = null;
|
||||||
|
[NotMapped]
|
||||||
|
public Dictionary<int, (IWorkModel, int)> StoreWorks
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
if (_storeWorks == null)
|
||||||
|
{
|
||||||
|
_storeWorks = Works
|
||||||
|
.ToDictionary(recPC => recPC.WorkId, recPC => (recPC.Work as IWorkModel, recPC.Count));
|
||||||
|
}
|
||||||
|
return _storeWorks;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
[ForeignKey("StoreId")]
|
||||||
|
public virtual List<StoreWork> Works { get; set; } = new();
|
||||||
|
|
||||||
|
public static Store Create(PlumbingRepairDataBase context, StoreBindingModel model)
|
||||||
|
{
|
||||||
|
return new Store()
|
||||||
|
{
|
||||||
|
Id = model.Id,
|
||||||
|
StoreName = model.StoreName,
|
||||||
|
StoreAdress = model.StoreAdress,
|
||||||
|
OpeningDate = model.OpeningDate,
|
||||||
|
WorkMaxCount = model.WorkMaxCount,
|
||||||
|
Works = model.StoreWorks.Select(x => new StoreWork
|
||||||
|
{
|
||||||
|
Work = context.Works.First(y => y.Id == x.Key),
|
||||||
|
Count = x.Value.Item2
|
||||||
|
}).ToList()
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Update(StoreBindingModel model)
|
||||||
|
{
|
||||||
|
StoreName = model.StoreName;
|
||||||
|
StoreAdress = model.StoreAdress;
|
||||||
|
OpeningDate = model.OpeningDate;
|
||||||
|
WorkMaxCount = model.WorkMaxCount;
|
||||||
|
}
|
||||||
|
|
||||||
|
public StoreViewModel GetViewModel => new()
|
||||||
|
{
|
||||||
|
Id = Id,
|
||||||
|
StoreName = StoreName,
|
||||||
|
StoreAdress = StoreAdress,
|
||||||
|
OpeningDate = OpeningDate,
|
||||||
|
WorkMaxCount = WorkMaxCount,
|
||||||
|
StoreWorks = StoreWorks
|
||||||
|
};
|
||||||
|
|
||||||
|
public void UpdateWorks(PlumbingRepairDataBase context, StoreBindingModel model)
|
||||||
|
{
|
||||||
|
var storeWorks = context.StoreWorks.Where(rec => rec.StoreId == model.Id).ToList();
|
||||||
|
if (storeWorks != null && storeWorks.Count > 0)
|
||||||
|
{ // удалили те, которых нет в модели
|
||||||
|
context.StoreWorks.RemoveRange(storeWorks.Where(rec => !model.StoreWorks.ContainsKey(rec.WorkId)));
|
||||||
|
context.SaveChanges();
|
||||||
|
// обновили количество у существующих записей
|
||||||
|
foreach (var updateWork in storeWorks)
|
||||||
|
{
|
||||||
|
updateWork.Count = model.StoreWorks[updateWork.WorkId].Item2;
|
||||||
|
model.StoreWorks.Remove(updateWork.WorkId);
|
||||||
|
}
|
||||||
|
context.SaveChanges();
|
||||||
|
}
|
||||||
|
var store = context.Stores.First(x => x.Id == Id);
|
||||||
|
foreach (var sw in model.StoreWorks)
|
||||||
|
{
|
||||||
|
context.StoreWorks.Add(new StoreWork
|
||||||
|
{
|
||||||
|
Store = store,
|
||||||
|
Work = context.Works.First(x => x.Id == sw.Key),
|
||||||
|
Count = sw.Value.Item2
|
||||||
|
});
|
||||||
|
context.SaveChanges();
|
||||||
|
}
|
||||||
|
_storeWorks = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,27 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.ComponentModel.DataAnnotations;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace PlumbingRepairDataBaseImplement.Models
|
||||||
|
{
|
||||||
|
public class StoreWork
|
||||||
|
{
|
||||||
|
public int Id { get; set; }
|
||||||
|
|
||||||
|
[Required]
|
||||||
|
public int WorkId { get; set; }
|
||||||
|
|
||||||
|
[Required]
|
||||||
|
public int StoreId { get; set; }
|
||||||
|
|
||||||
|
[Required]
|
||||||
|
public int Count { get; set; }
|
||||||
|
|
||||||
|
public virtual Store Store { get; set; } = new();
|
||||||
|
|
||||||
|
public virtual Work Work { get; set; } = new();
|
||||||
|
}
|
||||||
|
}
|
@ -23,5 +23,7 @@ namespace PlumbingRepairDataBaseImplement
|
|||||||
public virtual DbSet<Work> Works { set; get; }
|
public virtual DbSet<Work> Works { set; get; }
|
||||||
public virtual DbSet<WorkComponent> WorkComponents { set; get; }
|
public virtual DbSet<WorkComponent> WorkComponents { set; get; }
|
||||||
public virtual DbSet<Order> Orders { set; get; }
|
public virtual DbSet<Order> Orders { set; get; }
|
||||||
|
public virtual DbSet<Store> Stores { set; get; }
|
||||||
|
public virtual DbSet<StoreWork> StoreWorks { set; get; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user