16 lines
340 B
C#
16 lines
340 B
C#
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace FSI.BT.IR.Organization.Db.Data
|
|
{
|
|
public class AppDbContext : DbContext, IDataContext
|
|
{
|
|
public AppDbContext(DbContextOptions<AppDbContext> options)
|
|
: base(options)
|
|
{
|
|
|
|
}
|
|
|
|
public DbSet<Models.Organization> Organizations { get; set; }
|
|
}
|
|
}
|