Departament.cs 389 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. namespace IS_Hospital
  4. {
  5. public partial class Departament
  6. {
  7. public Departament()
  8. {
  9. Doctors = new HashSet<Doctor>();
  10. }
  11. public int DepartamentId { get; set; }
  12. public string? TitleDepartament { get; set; }
  13. public virtual ICollection<Doctor> Doctors { get; set; }
  14. }
  15. }