123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- namespace IS_Hospital
- {
- public partial class Departament
- {
- public Departament()
- {
- Doctors = new HashSet<Doctor>();
- }
- public int DepartamentId { get; set; }
- public string? TitleDepartament { get; set; }
- public virtual ICollection<Doctor> Doctors { get; set; }
- }
- }
|