15 lines
414 B
C#
15 lines
414 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using BibliotecaAPI.Models;
|
|
|
|
namespace BibliotecaAPI.Data
|
|
{
|
|
public class BibliotecaContext : DbContext
|
|
{
|
|
public BibliotecaContext(DbContextOptions<BibliotecaContext> options) : base(options) { }
|
|
|
|
public DbSet<Libro> Libros { get; set; }
|
|
public DbSet<Usuario> Usuarios { get; set; }
|
|
public DbSet<Prestamo> Prestamos { get; set; }
|
|
}
|
|
}
|