2025-07-02 18:27:13 +08:00
|
|
|
using AGSS.Models.Entities;
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
|
|
|
namespace AGSS.Models;
|
|
|
|
|
|
|
|
public class DBContext : DbContext
|
|
|
|
{
|
|
|
|
public DBContext(DbContextOptions<DBContext> options)
|
|
|
|
: base(options)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2025-07-08 23:06:19 +08:00
|
|
|
|
2025-07-02 18:27:13 +08:00
|
|
|
}
|