Module.cs 892 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. namespace AvaloniaApplication4.Models;
  4. public partial class Module
  5. {
  6. public int IdModule { get; set; }
  7. public string CodeModule { get; set; } = null!;
  8. public string Name { get; set; } = null!;
  9. public int IdTrainingStandarts { get; set; }
  10. public virtual TrainingStandart IdTrainingStandartsNavigation { get; set; } = null!;
  11. public virtual ICollection<MdkWithModule> MdkWithModules { get; set; } = new List<MdkWithModule>();
  12. public virtual ICollection<ModulesWithCompetency> ModulesWithCompetencies { get; set; } = new List<ModulesWithCompetency>();
  13. public virtual ICollection<ProgramsWithModule> ProgramsWithModules { get; set; } = new List<ProgramsWithModule>();
  14. public virtual ICollection<StudyListModulesStudent> StudyListModulesStudents { get; set; } = new List<StudyListModulesStudent>();
  15. }