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