diff --git a/src/Server/Entities/Resume.cs b/src/Server/Entities/Resume.cs index 7f61a65..d2b9eba 100644 --- a/src/Server/Entities/Resume.cs +++ b/src/Server/Entities/Resume.cs @@ -13,7 +13,7 @@ namespace BoredCareers.Entities { public string City { get; set; } = ""; public bool IsActive { get; set; } = false; public ResumeExperience[] Experience { get; set; } = []; - public ResumeMillitary Millitary { get; set; } = new ResumeMillitary(); + public ResumeMilitary Millitary { get; set; } = new ResumeMilitary(); public ResumeEducation[] Educations { get; set; } = []; public ResumeSkill[] Skills { get; set; } = []; public ResumeLanguage[] Languages { get; set; } = []; @@ -38,6 +38,7 @@ namespace BoredCareers.Entities { public class ResumeExperienceBullet { public int ID { get; set; } // PK + public int ResumeID { get; set; } // FK public int ResumeExperienceID { get; set; } // FK public string JobFunction { get; set; } = ""; } @@ -55,6 +56,7 @@ namespace BoredCareers.Entities { public class ResumeMilitaryBullet { public int ID { get; set; } // PK + public int ResumeID { get; set; } // FK public int ResumeMilitaryID { get; set; } // FK public string Achevement { get; set; } = ""; public string Description { get; set; } = "";