- using Microsoft.EntityFrameworkCore;
- namespace qdr.app.bundleboiler.data.Model
- {
- public class BoilerDbContext : DbContext
- {
- public BoilerDbContext(DbContextOptions<BoilerDbContext> options) : base(options)
- {
- }
- //public DbSet<Boiler> Boilers { get; set; }
- }
- }
|