ScientificReport
DepartmentReport.cs
Go to the documentation of this file.
1 using System.Collections.Generic;
2 
3 namespace ScientificReport.DAL.Entities.Reports
4 {
5  public class DepartmentReport : Report
6  {
7  public virtual UserProfile.UserProfile HeadOfDepartment { get; set; }
8 
9  public virtual ICollection<TeacherReport> TeacherReports { get; set; }
10 
11  public virtual ICollection<Conference> Conferences { get; set; }
12  }
13 }