using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.EntityFrameworkCore; namespace Moshaverino.Web.Models { public class MoshaverinoContext : DbContext { public MoshaverinoContext(DbContextOptions contextOptions) : base(contextOptions) { } public DbSet Students { get; set; } } }