/// <summary> /// Create a new Course object. /// </summary> /// <param name="courseId">Initial value of the CourseId property.</param> /// <param name="name">Initial value of the Name property.</param> public static Course CreateCourse(global::System.Guid courseId, global::System.String name) { Course course = new Course(); course.CourseId = courseId; course.Name = name; return course; }
/// <summary> /// Deprecated Method for adding a new object to the Courses EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToCourses(Course course) { base.AddObject("Courses", course); }