using IMCS.CCS.Entitys; using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace IMCS.CCS.Repository { public class CcsContext : DbContext { public CcsContext(DbContextOptions options) : base(options) { } public DbSet User { get; set; } public DbSet Device { get; set; } public DbSet EquipmentMonitor { get; set; } public DbSet TaskCallback { get; set; } public DbSet Dictionary { get; set; } public DbSet CcsAction { get; set; } public DbSet CcsTagValue { get; set; } public DbSet CcsActionAddress { get; set; } } }