Skip to content

Commit

Permalink
Fixed identifier extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
rvanoord committed Oct 2, 2023
1 parent 89271e8 commit 42f472a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions BccCode.Tripletex.Client/TripletexExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,12 @@ public static class TripletexExtensions

public static Project? Identifier(this Project item)
{
return item != null ? new Project { Id = item.Id } : null;
return item != null ? new Project { Id = item.Id, ProjectManager = null } : null;
}

public static Department? Identifier(this Department item)
{
return item != null ? new Department { Id = item.Id } : null;
return item != null ? new Department { Id = item.Id, DepartmentManager = null } : null;
}

public static Department? IdentifierWithName(this Department item)
Expand Down

0 comments on commit 42f472a

Please sign in to comment.