Skip to content

Commit

Permalink
(#433) users: add organization id for the work and education
Browse files Browse the repository at this point in the history
  • Loading branch information
SaintAngeLs committed Oct 11, 2024
1 parent b4d9a46 commit e54aa63
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ public class Education
public DateTime StartDate { get; set; }
public DateTime EndDate { get; set; }
public string Description { get; set; }
public Guid OrganizationId { get; set; }

public Education(string institutionName, string degree, DateTime startDate, DateTime endDate, string description)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ public class Work
public DateTime StartDate { get; set; }
public DateTime EndDate { get; set; }
public string Description { get; set; }
public Guid OrganizationId { get; set; }

public Work(string company, string position, DateTime startDate, DateTime endDate, string description)
{
Expand Down

0 comments on commit e54aa63

Please sign in to comment.