123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- namespace AvaloniaApplication4.Models;
- public partial class Student
- {
- public int IdStudent { get; set; }
- public string Name { get; set; } = null!;
- public string Surname { get; set; } = null!;
- public string? Patronumic { get; set; }
- public int IdEducation { get; set; }
- public DateOnly Birthday { get; set; }
- public virtual StudentsEducation IdEducationNavigation { get; set; } = null!;
- public virtual ICollection<ProgramsWithStudent> ProgramsWithStudents { get; set; } = new List<ProgramsWithStudent>();
- public virtual ICollection<StudyListModulesStudent> StudyListModulesStudents { get; set; } = new List<StudyListModulesStudent>();
- public virtual ICollection<StudyListSubjectsStudent> StudyListSubjectsStudents { get; set; } = new List<StudyListSubjectsStudent>();
- }
|