Add documents by machine family.

This commit is contained in:
2019-06-17 02:07:45 +01:00
parent 938252cfd5
commit 8e19bc4dee
10 changed files with 7832 additions and 9 deletions

View File

@@ -45,7 +45,8 @@ namespace Cicm.Database.Models
[StringLength(255)]
public string Name { get; set; }
public virtual Company Company { get; set; }
public virtual ICollection<Machine> Machines { get; set; }
public virtual Company Company { get; set; }
public virtual ICollection<Machine> Machines { get; set; }
public virtual ICollection<DocumentsByMachineFamily> Documents { get; set; }
}
}