initial commit
This commit is contained in:
11
DatabaseContext.cs
Normal file
11
DatabaseContext.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace ApplianceRepair
|
||||
{
|
||||
public class DatabaseContext(DbContextOptions<DatabaseContext> options) : DbContext(options)
|
||||
{
|
||||
public DbSet<HomePageRecord> HomePage { get; set; }
|
||||
public DbSet<ContentCardRecord> ContentCards { get; set; }
|
||||
public DbSet<BusinessConfigRecord> BusinessConfig { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user