-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApptDbContext.cs
More file actions
35 lines (32 loc) · 1.31 KB
/
Copy pathApptDbContext.cs
File metadata and controls
35 lines (32 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
using System;
using StudentPlus.DomainModels;
using System.Collections.Generic;
using Microsoft.EntityFrameworkCore;
using System.Threading.Tasks;
using System.ComponentModel.DataAnnotations;
using StudentPlus.Enums;
using System.IO;
using Student_plus.DomainModels;
namespace StudentPlus
{
public class AppDbContext : DbContext
{
public DbSet<Draft> Draft { get; set; }
public DbSet<DraftFeedback> DraftFeedback { get; set; }
public DbSet<Meeting> Meeting { get; set; }
public DbSet<MeetingAttendee> MeetingAttendee { get; set; }
public DbSet<MeetingFeedback> MeetingFeedback { get; set; }
public DbSet<MeetingFeedbackCatergory> MeetingFeedbackCatergory { get; set; }
public DbSet<MeetingFeedbackResponse> MeetingFeedbackResponse { get; set; }
public DbSet<MeetingQA> MeetingQA { get; set; }
public DbSet<MeetingRecording> MeetingRecording { get; set; }
public DbSet<MeetingRequest> MeetingRequest { get; set; }
public DbSet<Student> Student { get; set; }
public DbSet<Supervisee> Supervisee { get; set; }
public DbSet<Supervisor> Supervisor { get; set; }
public DbSet<Token> Token { get; set; }
public AppDbContext(DbContextOptions<AppDbContext> options)
: base(options)
{}
}
}