15 lines
355 B
C#
15 lines
355 B
C#
using API.Models.Internal.Altersgruppen;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace API.Database
|
|
{
|
|
public class ApplicationDbContext : DbContext
|
|
{
|
|
public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options) : base(options)
|
|
{
|
|
}
|
|
|
|
public DbSet<AltersGruppe> Altersgruppen { get; set; }
|
|
}
|
|
}
|