18 lines
487 B
C#
18 lines
487 B
C#
using HanyadikHetVan.Data.Entities;
|
|
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace HanyadikHetVan.Data
|
|
{
|
|
public class ApplicationDbContext : IdentityDbContext
|
|
{
|
|
public DbSet<Pause> Pauses { get; set; }
|
|
public DbSet<WeeklyTimeSpan> WeeklyTimeSpans { get; set; }
|
|
|
|
public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options)
|
|
: base(options)
|
|
{
|
|
}
|
|
}
|
|
}
|