лаба 5

This commit is contained in:
2025-04-10 09:38:24 +04:00
parent c9793000e3
commit afe18e1631
22 changed files with 670 additions and 92 deletions

View File

@@ -18,13 +18,15 @@ public class Employee
public string Email { get; set; }
public string PostId { get; set; }
public required string PostId { get; set; }
public DateTime BirthDate { get; set; }
public DateTime EmploymentDate { get; set; }
public bool IsDeleted { get; set; }
public DateTime? DateOfDelete { get; set; }
[NotMapped]
public Post? Post { get; set; }
[ForeignKey("EmployeeId")]