14 lines
276 B
C#
14 lines
276 B
C#
|
using AGSS.Models.Entities;
|
||
|
using Microsoft.EntityFrameworkCore;
|
||
|
|
||
|
namespace AGSS.Models;
|
||
|
|
||
|
public class DBContext : DbContext
|
||
|
{
|
||
|
public DBContext(DbContextOptions<DBContext> options)
|
||
|
: base(options)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public DbSet<UserModel> UserModels { get; set; }
|
||
|
}
|