This commit is contained in:
2020-06-09 21:59:16 +00:00
parent 1a7cea9272
commit 3dc9ffbd10
4 changed files with 24 additions and 8 deletions

View File

@@ -6,10 +6,10 @@ namespace rockfishCore.Models
public partial class Site
{
public Site()
{
// Incident = new HashSet<Incident>();
{
Purchase = new HashSet<Purchase>();
//TrialNavigation = new HashSet<Trial>();
LegacyV7=true;
DbId="v7_no_dbid";
}
public long Id { get; set; }
@@ -31,6 +31,10 @@ namespace rockfishCore.Models
public string ServerBits { get; set; }
public string Notes { get; set; }
//raven new
public bool LegacyV7 { get; set; }
public string DbId { get; set; }
// public virtual ICollection<Incident> Incident { get; set; }
public virtual ICollection<Purchase> Purchase { get; set; }
// public virtual ICollection<Trial> TrialNavigation { get; set; }