using Microsoft.EntityFrameworkCore;
using YD_XinWei.Api.Entitys;
using YD_XinWei.Api.SmartSportsEntitys;
namespace YD_XinWei.Api.Context
{
///
/// 用户服务上下文
///
public class SmartSportsContext : DbContext
{
public SmartSportsContext(DbContextOptions options) : base(options)
{
}
public DbSet Class { get; set; }
public DbSet ClassAssocTeacher { get; set; }
public DbSet HomeWork { get; set; }
public DbSet HomeWorkStudents { get; set; }
public DbSet Student { get; set; }
public DbSet SubmittedAssignments { get; set; }
public DbSet Teacher { get; set; }
public DbSet Sys_User { get; set; }
}
}