Add people by magazine.

This commit is contained in:
2019-06-17 04:10:14 +01:00
parent e4edf83afc
commit e76e09112d
8 changed files with 8237 additions and 2 deletions

View File

@@ -1,4 +1,5 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace Cicm.Database.Models
@@ -17,6 +18,7 @@ namespace Cicm.Database.Models
public string ProductCode { get; set; }
public short Pages { get; set; }
public virtual Magazine Magazine { get; set; }
public virtual Magazine Magazine { get; set; }
public virtual ICollection<PeopleByMagazine> People { get; set; }
}
}