15 lines
316 B
C#
15 lines
316 B
C#
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace FichaBackend
|
|
{
|
|
public class DatabaseContext : DbContext
|
|
{
|
|
|
|
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
|
{
|
|
}
|
|
|
|
public DatabaseContext(DbContextOptions<DatabaseContext> options) : base(options) { }
|
|
}
|
|
}
|