diff --git a/BccCode.Tripletex.Client/TripletexExtensions.cs b/BccCode.Tripletex.Client/TripletexExtensions.cs index e8f3854..e5eb19a 100644 --- a/BccCode.Tripletex.Client/TripletexExtensions.cs +++ b/BccCode.Tripletex.Client/TripletexExtensions.cs @@ -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)