Skip to content

Commit

Permalink
post in progress
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Macneil committed Apr 20, 2017
1 parent 7dff8cd commit b1556a1
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/dotnetGigs/Data/ApplicationDbContext.cs
@@ -0,0 +1,20 @@


using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
using DotNetGigs.Models.Entities;
using Microsoft.EntityFrameworkCore;

namespace DotNetGigs.Data
{
public class ApplicationDbContext : IdentityDbContext<AppUser>
{
public ApplicationDbContext(DbContextOptions options)
: base(options)
{
}

public DbSet<JobSeeker> JobSeekers { get; set; }
}
}


0 comments on commit b1556a1

Please sign in to comment.