Untitled
Anonymous
plain_text
09/02/2024 11:19 AM
612 B
20
Indexable
public class Teacher
{
Guid Id;
string Name;
public decimal Salary;
public ICollection<Course> Courses;
}
public class Course
{
Guid Id;
string Name;
public Guid TeacherId;
public Teacher Teacher;
}
public class TeacherDto
{
public string Name;
public decimal Salary;
public ICollection<CourseDto> Courses;
}
public class CourseDto
{
string Name;
public TeacherDto Teacher;
}Editor is loading...
Leave a Comment