15 lines
402 B
C#
15 lines
402 B
C#
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<MoshaverinoContext> contextOptions) : base(contextOptions) { }
|
|
public DbSet<Student> Students { get; set; }
|
|
}
|
|
}
|