Add people by document.

This commit is contained in:
2019-06-17 00:34:54 +01:00
parent e2c9416bbe
commit 07da0eec75
8 changed files with 7713 additions and 2 deletions

View File

@@ -1,7 +1,11 @@
using System.Collections.Generic;
namespace Cicm.Database.Models
{
public class Document : DocumentBase
{
public virtual Iso31661Numeric Country { get; set; }
public virtual ICollection<PeopleByDocument> People { get; set; }
}
}