2 using System.Collections.Generic;
3 using Microsoft.AspNetCore.Identity;
14 public string FirstName {
get;
set; }
16 public string MiddleName {
get;
set; }
18 public string LastName {
get;
set; }
20 public int BirthYear {
get;
set; }
22 public int GraduationYear {
get;
set; }
24 public string ScientificDegree {
get;
set; }
26 public int YearDegreeGained {
get;
set; }
28 public string AcademicStatus {
get;
set; }
30 public int YearDegreeAssigned {
get;
set; }
32 public string Position {
get;
set; }
34 public bool IsApproved {
get;
set; }
36 public bool IsActive {
get;
set; }
48 public virtual ICollection<UserProfilesReportThesis> UserProfilesReportTheses {
get;
set; }
56 public string FullName => $
"{LastName} {FirstName} {MiddleName}";
override string ToString()