15 lines
303 B
C#
15 lines
303 B
C#
|
using DSaC.Database.Models;
|
|||
|
using Microsoft.EntityFrameworkCore;
|
|||
|
|
|||
|
namespace DSaC.Database
|
|||
|
{
|
|||
|
public class DsacContext: DbContext
|
|||
|
{
|
|||
|
public DsacContext(DbContextOptions options) : base(options)
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
public DbSet<Counterparty> Counterparties { get; set; }
|
|||
|
}
|
|||
|
}
|