forked from amkovkov/GranuSightSoftware2
feat: aminecontent calibration reforge
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace GSS2.Core.Analysis.AmineContent.Database;
|
||||
|
||||
public class Context : DbContext
|
||||
{
|
||||
public DbSet<BrandRecord> BrandRecords => Set<BrandRecord>();
|
||||
public DbSet<FeatureRecord> FeatureRecords => Set<FeatureRecord>();
|
||||
public DbSet<ImageRecord> ImageRecords => Set<ImageRecord>();
|
||||
// public DbSet<ResultRecord> ResultRecords => Set<ResultRecord>();
|
||||
public DbSet<SeparatorRecord> SeparatorRecords => Set<SeparatorRecord>();
|
||||
public DbSet<SampleRecord> SampleRecords => Set<SampleRecord>();
|
||||
|
||||
public Context(DbContextOptions<Context> options)
|
||||
: base(options)
|
||||
{ }
|
||||
}
|
||||
Reference in New Issue
Block a user