StudentSystem.Models.Course.Course C# (CSharp) Метод

Course() публичный Метод

public Course ( ) : System
Результат System
        public Course()
        {
            this.Id = Guid.NewGuid();
            this.Students = new HashSet<Student>();
            this.Homeworks = new HashSet<Homework>();
        }
Course