ApiManutenzioni/ApiPolo/Models/Ferrari_dbcontext/FERRA_PAGAMDbContext.cs
2024-01-23 11:59:33 +01:00

24 lines
650 B
C#

using ApiPolo.Models.Sicilia_dbcontext;
using Microsoft.EntityFrameworkCore;
namespace ApiPolo.Models.Ferrari_dbcontext
{
/// <summary></summary>
public class FERRA_PAGAMDbContext : DbContext
{
/// <summary></summary>
public DbSet<Pagam>? Pagamenti { get; set; }
/// <summary></summary>
public FERRA_PAGAMDbContext(DbContextOptions<FERRA_PAGAMDbContext> options) : base(options)
{
}
/// <summary></summary>
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder.Entity<Pagam>().ToView("API_PAGAMENTI");
}
}
}