/// <summary>
 /// Deprecated Method for adding a new object to the Subjects EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToSubjects(Subject subject)
 {
     base.AddObject("Subjects", subject);
 }
 /// <summary>
 /// Create a new Subject object.
 /// </summary>
 /// <param name="id">Initial value of the ID property.</param>
 /// <param name="name">Initial value of the Name property.</param>
 /// <param name="canceledMark">Initial value of the CanceledMark property.</param>
 public static Subject CreateSubject(global::System.Int32 id, global::System.String name, global::System.Int32 canceledMark)
 {
     Subject subject = new Subject();
     subject.ID = id;
     subject.Name = name;
     subject.CanceledMark = canceledMark;
     return subject;
 }