18 lines
399 B
C#
18 lines
399 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace kursovaya.Models;
|
|||
|
|
|||
|
public partial class DisciplineTeacher
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
|
|||
|
public int IdDiscipline { get; set; }
|
|||
|
|
|||
|
public int IdTeacher { get; set; }
|
|||
|
|
|||
|
public virtual Discipline IdDisciplineNavigation { get; set; } = null!;
|
|||
|
|
|||
|
public virtual Teacher IdTeacherNavigation { get; set; } = null!;
|
|||
|
}
|