2023-03-04 20:23:01 +04:00
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
using PlumbingRepairDatabaseImplement.Models;
|
|
|
|
|
|
|
|
|
|
namespace PlumbingRepairDatabaseImplement
|
|
|
|
|
{
|
|
|
|
|
public class PlumbingRepairDataBase : DbContext
|
|
|
|
|
{
|
|
|
|
|
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
|
|
|
|
|
{
|
|
|
|
|
if (optionsBuilder.IsConfigured == false)
|
|
|
|
|
{
|
|
|
|
|
optionsBuilder.UseNpgsql(@"Host=localhost;Port=5432;Database=PlumbingRepairDatabaseFull;Username=postgres;Password=186qazwsx");
|
|
|
|
|
}
|
|
|
|
|
base.OnConfiguring(optionsBuilder);
|
|
|
|
|
}
|
|
|
|
|
public virtual DbSet<Component> Components { set; get; }
|
|
|
|
|
public virtual DbSet<Work> Works { set; get; }
|
|
|
|
|
public virtual DbSet<WorkComponent> WorkComponents { set; get; }
|
|
|
|
|
public virtual DbSet<Order> Orders { set; get; }
|
2023-04-04 19:52:14 +04:00
|
|
|
|
public virtual DbSet<Client> Clients { set; get; }
|
2023-03-04 20:23:01 +04:00
|
|
|
|
}
|
|
|
|
|
}
|