Student.cs 871 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. namespace AvaloniaApplication4.Models;
  4. public partial class Student
  5. {
  6. public int IdStudent { get; set; }
  7. public string Name { get; set; } = null!;
  8. public string Surname { get; set; } = null!;
  9. public string? Patronumic { get; set; }
  10. public int IdEducation { get; set; }
  11. public DateOnly Birthday { get; set; }
  12. public virtual StudentsEducation IdEducationNavigation { get; set; } = null!;
  13. public virtual ICollection<ProgramsWithStudent> ProgramsWithStudents { get; set; } = new List<ProgramsWithStudent>();
  14. public virtual ICollection<StudyListModulesStudent> StudyListModulesStudents { get; set; } = new List<StudyListModulesStudent>();
  15. public virtual ICollection<StudyListSubjectsStudent> StudyListSubjectsStudents { get; set; } = new List<StudyListSubjectsStudent>();
  16. }