working #28

Merged
derek merged 8 commits from working into main 2025-08-14 21:51:05 -07:00
2 changed files with 19 additions and 19 deletions
Showing only changes of commit 2d6644fc0e - Show all commits
+4 -4
View File
@@ -13,12 +13,12 @@ export class Resume {
public stateOrRegion: string = "";
public city: string = "";
public isActive: boolean = false;
public experience: ResumeExperience[] = [];
public military: ResumeMilitary | null = new ResumeMilitary;
public education: ResumeEducation[] = [];
public experiences: ResumeExperience[] = [];
public educations: ResumeEducation[] = [];
public skills: ResumeSkill[] = [];
public languages: ResumeLanguage[] = [];
public certification: ResumeCertification[] = [];
public certifications: ResumeCertification[] = [];
public projects: ResumeProject[] = [];
public trackUUID: string = crypto.randomUUID();
}
@@ -58,7 +58,7 @@ export class ResumeMilitary {
public dateStarted: Date = new Date();
public stillServing: boolean = false;
public dateEnded: Date = new Date();
public millitaryBullets: ResumeMilitaryBullet[] = [];
public militaryBullets: ResumeMilitaryBullet[] = [];
public trackUUID: string = crypto.randomUUID();
}
+15 -15
View File
@@ -12,18 +12,18 @@ namespace BoredCareers.Entities {
public string StateOrRegion { get; set; } = "";
public string City { get; set; } = "";
public bool IsActive { get; set; } = false;
public ResumeExperience[] Experience { get; set; } = [];
public ResumeMilitary? Millitary { get; set; } = null;
public ResumeExperience[] Experiences { get; set; } = [];
public ResumeMilitary? Military { get; set; } = null;
public ResumeEducation[] Educations { get; set; } = [];
public ResumeSkill[] Skills { get; set; } = [];
public ResumeLanguage[] Languages { get; set; } = [];
public ResumeCertification[] Certification { get; set; } = [];
public ResumeCertification[] Certifications { get; set; } = [];
public ResumeProject[] Projects { get; set; } = [];
}
public class ResumeExperience {
public int? ID { get; set; } // PK
public int ResumeID { get; set; } // FK
public int? ResumeID { get; set; } // FK
public string JobTitle { get; set; } = "";
public string Company { get; set; } = "";
public string PostalCode { get; set; } = "";
@@ -38,33 +38,33 @@ 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 int? ResumeID { get; set; } // FK
public int? ResumeExperienceID { get; set; } // FK
public string JobFunction { get; set; } = "";
}
public class ResumeMilitary {
public int? ID { get; set; } // PK
public int ResumeID { get; set; } // FK
public int? ResumeID { get; set; } // FK
public string Country { get; set; } = ""; // 2 Letter Country Code
public string Rank { get; set; } = "";
public DateTime DateStarted { get; set; } = new DateTime();
public bool StillServing { get; set; } = false;
public DateTime DateEnded { get; set; } = new DateTime();
public ResumeMilitaryBullet[] MillitaryBullets = [];
public ResumeMilitaryBullet[] MilitaryBullets { get; set; } = [];
}
public class ResumeMilitaryBullet {
public int? ID { get; set; } // PK
public int ResumeID { get; set; } // FK
public int ResumeMilitaryID { get; set; } // FK
public int? ResumeID { get; set; } // FK
public int? ResumeMilitaryID { get; set; } // FK
public string Achievement { get; set; } = "";
public string Description { get; set; } = "";
}
public class ResumeEducation {
public int? ID { get; set; } // PK
public int ResumeID { get; set; } // FK
public int? ResumeID { get; set; } // FK
public string DegreeType { get; set; } = "";
public string DegreeField { get; set; } = "";
public string School { get; set; } = "";
@@ -79,21 +79,21 @@ namespace BoredCareers.Entities {
public class ResumeSkill {
public int? ID { get; set; } // PK
public int ResumeID { get; set; } // FK
public int? ResumeID { get; set; } // FK
public string Name { get; set; } = "";
public string Description { get; set; } = "";
}
public class ResumeLanguage {
public int? ID { get; set; } // PK
public int ResumeID { get; set; } // FK
public int? ResumeID { get; set; } // FK
public string Language { get; set; } = "";
public string Proficiency { get; set; } = "";
}
public class ResumeCertification {
public int? ID { get; set; } // PK
public int ResumeID { get; set; } // FK
public int? ResumeID { get; set; } // FK
public string Name { get; set; } = "";
public string VerificationURL { get; set; } = "";
public string Description { get; set; } = "";
@@ -101,7 +101,7 @@ namespace BoredCareers.Entities {
public class ResumeProject {
public int? ID { get; set; } // PK
public int ResumeID { get; set; } // FK
public int? ResumeID { get; set; } // FK
public string Name { get; set; } = "";
public string URL { get; set; } = "";
public string Description { get; set; } = "";