Add project files.

This commit is contained in:
2021-05-03 01:30:06 +02:00
parent 145740773e
commit a0ce1669ae
71 changed files with 41708 additions and 0 deletions

View File

@ -0,0 +1,17 @@
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)
{
}
}
}