ScientificReport
PostgraduateDissertationGuidance.cs
Go to the documentation of this file.
1 using System;
2 using System.ComponentModel.DataAnnotations;
3 
4 namespace ScientificReport.DAL.Entities
5 {
7  {
8  [Key]
9  public Guid Id { get; set; }
10 
11  public virtual UserProfile.UserProfile Guide { get; set; }
12 
13  public string PostgraduateName { get; set; }
14 
15  public string Dissertation { get; set; }
16 
17  public string Speciality { get; set; }
18 
19  [DataType(DataType.Date)]
20  public DateTime DateDegreeGained { get; set; }
21 
22  public int GraduationYear { get; set; }
23  }
24 }