using Microsoft.EntityFrameworkCore;
namespace ApiPolo.Models.Siet_dbcontext
{
///
public class SIET_TIMBRATURE_DbContext : DbContext
{
///
public DbSet? Timbr { get; set; }
///
public SIET_TIMBRATURE_DbContext(DbContextOptions options) : base(options)
{
}
///
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder.Entity().ToTable("TIMBRATURE");
}
}
}