14 lines
273 B
C#
14 lines
273 B
C#
using Accounting.Models;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace Accounting.DAL;
|
|
|
|
public class DataContext : DbContext
|
|
{
|
|
public DataContext(DbContextOptions options) : base(options)
|
|
{
|
|
}
|
|
|
|
public DbSet<AccountRecord> AccountRecords { get; set; }
|
|
}
|