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