32 lines
1.1 KiB
C#
32 lines
1.1 KiB
C#
|
using DatabaseImplement.Models;
|
|||
|
using Microsoft.EntityFrameworkCore;
|
|||
|
|
|||
|
namespace DatabaseImplement
|
|||
|
{
|
|||
|
public class AutoShopDB : DbContext
|
|||
|
{
|
|||
|
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
|
|||
|
{
|
|||
|
if (optionsBuilder.IsConfigured == false)
|
|||
|
{
|
|||
|
optionsBuilder.UseNpgsql(@"
|
|||
|
Host=localhost;
|
|||
|
Port=5432;
|
|||
|
Database=AutoShopFullNew;
|
|||
|
Username=postgres;
|
|||
|
Password=55256636a;");
|
|||
|
}
|
|||
|
base.OnConfiguring(optionsBuilder);
|
|||
|
}
|
|||
|
|
|||
|
public virtual DbSet<Client> Clients { set; get; }
|
|||
|
public virtual DbSet<Order> Costs { set; get; }
|
|||
|
public virtual DbSet<OrderByPurchase> OrderByPurchases { set; get; }
|
|||
|
public virtual DbSet<Employee> Employees { set; get; }
|
|||
|
public virtual DbSet<Operation> Operations { set; get; }
|
|||
|
public virtual DbSet<OperationByPurchase> OperationByPurchases { set; get; }
|
|||
|
public virtual DbSet<Payment> Payments { set; get; }
|
|||
|
public virtual DbSet<Purchase> Purchases { set; get; }
|
|||
|
}
|
|||
|
}
|