Add software families.

This commit is contained in:
2020-06-11 18:51:58 +01:00
parent b064b2c701
commit 41daba0aa5
10 changed files with 9909 additions and 2042 deletions

View File

@@ -57,8 +57,9 @@ namespace Marechai.Database.Models
[NotMapped, DisplayName("Name")]
public string FullName => DisplayName ?? Alias ?? $"{Name} {Surname}";
public short? CountryOfBirthId { get; set; }
public virtual ICollection<PeopleByCompany> Companies { get; set; }
public virtual DocumentPerson DocumentPerson { get; set; }
public short? CountryOfBirthId { get; set; }
public virtual ICollection<PeopleByCompany> Companies { get; set; }
public virtual DocumentPerson DocumentPerson { get; set; }
public virtual ICollection<PeopleBySoftwareFamily> SoftwareFamilies { get; set; }
}
}