using Microsoft.EntityFrameworkCore; using WondersAPI.Models; namespace WondersAPI.Data { public class AppDbContext : DbContext { public DbSet Wonders => Set(); public AppDbContext(DbContextOptions options) : base(options) { } } }