Writing relations into customer and contact

This commit is contained in:
2025-10-07 11:37:51 +02:00
parent 2bbb771635
commit 41b0f1892e
3 changed files with 18 additions and 4 deletions

View File

@@ -16,4 +16,6 @@ public class Contact
public int CommunicationId { get; set; }
public Communication? Communication { get; set; }
public List<CustomerContact>? CustomerContacts { get; set; }
}

View File

@@ -13,4 +13,6 @@ public class Customer
public int ContactId { get; set; }
public Contact? Contact { get; set; }
public List<CustomerContact>? CustomerContacts { get; set; }
}