From ad9c8aa42da250bb2ca852a4cf9dd5687914f0c4 Mon Sep 17 00:00:00 2001 From: sanchezvem Date: Wed, 8 Oct 2025 11:15:25 +0100 Subject: [PATCH] Fix in ContactServiceProvider.cs --- PyroFetes/Models/ContactServiceProvider.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PyroFetes/Models/ContactServiceProvider.cs b/PyroFetes/Models/ContactServiceProvider.cs index dc310d8..cc9cd1b 100644 --- a/PyroFetes/Models/ContactServiceProvider.cs +++ b/PyroFetes/Models/ContactServiceProvider.cs @@ -9,6 +9,6 @@ public class ContactServiceProvider [Required] public int ContactId { get; set; } [Required] public int ServiceProviderId { get; set; } - public Product? Contact { get; set; } - public DeliveryNote? ServiceProvider { get; set; } + public Contact? Contact { get; set; } + public ServiceProvider? ServiceProvider { get; set; } } \ No newline at end of file