fixed some relationship problems

This commit is contained in:
2024-04-29 22:57:16 +02:00
parent 8cf2b0fbb9
commit 53148f5142
5 changed files with 13 additions and 14 deletions

View File

@@ -17,6 +17,6 @@ namespace WD7UVN_HFT_2023241.Models
public string EMAIL { get; set; }
public string PHONE { get; set; }
[ForeignKey(nameof(Service))]
public int SERVICE_ID { get; set; }
public int? SERVICE_ID { get; set; }
}
}