2023-04-05 19:08:51 +04:00
|
|
|
|
using ComputerShopDatabaseImplement.Models;
|
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ComputerShopDatabaseImplement
|
|
|
|
|
{
|
|
|
|
|
internal class ComputerShopDatabase : DbContext
|
|
|
|
|
{
|
|
|
|
|
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
|
|
|
|
|
{
|
|
|
|
|
if (optionsBuilder.IsConfigured == false)
|
|
|
|
|
{
|
2023-04-07 16:53:49 +04:00
|
|
|
|
optionsBuilder.UseSqlServer(@"Data Source=DESKTOP-IRUVF5S\SQLEXPRESS;Initial Catalog=ComputerShopDatabaseCW;Integrated Security=True;MultipleActiveResultSets=True;;TrustServerCertificate=True");
|
2023-04-05 19:08:51 +04:00
|
|
|
|
}
|
|
|
|
|
base.OnConfiguring(optionsBuilder);
|
|
|
|
|
}
|
|
|
|
|
public virtual DbSet<Component> Components { set; get; }
|
|
|
|
|
public virtual DbSet<Assembly> Assemblies { set; get; }
|
|
|
|
|
public virtual DbSet<AssemblyComponent> AssemblyComponents { set; get; }
|
|
|
|
|
public virtual DbSet<Purchase> Purchases { set; get; }
|
2023-04-06 23:41:09 +04:00
|
|
|
|
public virtual DbSet<Order> Orders { set; get; }
|
|
|
|
|
public virtual DbSet<Supply> Supplies { set; get; }
|
|
|
|
|
public virtual DbSet<SupplyOrder> SupplyOrders { set; get; }
|
|
|
|
|
public virtual DbSet<EquipmentReceiving> EquipmentReceivings { set; get; }
|
2023-04-07 16:53:49 +04:00
|
|
|
|
public virtual DbSet<ComponentSupply> ComponentSupplies { set; get; }
|
|
|
|
|
public virtual DbSet<AssemblyOrder> AssemblyOrders { set; get; }
|
2023-04-07 17:53:57 +04:00
|
|
|
|
public virtual DbSet<Client> Clients { set; get; }
|
2023-04-05 19:08:51 +04:00
|
|
|
|
}
|
|
|
|
|
}
|