/// <summary>
 /// Deprecated Method for adding a new object to the ProspectiveStudentTranscripts EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToProspectiveStudentTranscripts(ProspectiveStudentTranscript prospectiveStudentTranscript)
 {
     base.AddObject("ProspectiveStudentTranscripts", prospectiveStudentTranscript);
 }
 /// <summary>
 /// Create a new ProspectiveStudentTranscript object.
 /// </summary>
 /// <param name="fileId">Initial value of the FileId property.</param>
 /// <param name="userId">Initial value of the UserId property.</param>
 /// <param name="fileName">Initial value of the FileName property.</param>
 /// <param name="fileContent">Initial value of the FileContent property.</param>
 /// <param name="contentLength">Initial value of the ContentLength property.</param>
 /// <param name="contentType">Initial value of the ContentType property.</param>
 public static ProspectiveStudentTranscript CreateProspectiveStudentTranscript(global::System.Int32 fileId, global::System.Int32 userId, global::System.String fileName, global::System.Byte[] fileContent, global::System.Int32 contentLength, global::System.String contentType)
 {
     ProspectiveStudentTranscript prospectiveStudentTranscript = new ProspectiveStudentTranscript();
     prospectiveStudentTranscript.FileId = fileId;
     prospectiveStudentTranscript.UserId = userId;
     prospectiveStudentTranscript.FileName = fileName;
     prospectiveStudentTranscript.FileContent = fileContent;
     prospectiveStudentTranscript.ContentLength = contentLength;
     prospectiveStudentTranscript.ContentType = contentType;
     return prospectiveStudentTranscript;
 }