/// <summary>
 /// Deprecated Method for adding a new object to the Resumes EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToResumes(Resume resume)
 {
     base.AddObject("Resumes", resume);
 }
 /// <summary>
 /// Create a new Resume object.
 /// </summary>
 /// <param name="resumeIDKey">Initial value of the ResumeIDKey property.</param>
 /// <param name="lastUpdated">Initial value of the LastUpdated property.</param>
 /// <param name="firstName">Initial value of the FirstName property.</param>
 /// <param name="lastName">Initial value of the LastName property.</param>
 /// <param name="middleName">Initial value of the MiddleName property.</param>
 /// <param name="missionStatement">Initial value of the MissionStatement property.</param>
 /// <param name="school">Initial value of the School property.</param>
 /// <param name="certifications">Initial value of the Certifications property.</param>
 /// <param name="jobExperience">Initial value of the JobExperience property.</param>
 /// <param name="email">Initial value of the Email property.</param>
 /// <param name="phoneNumber">Initial value of the PhoneNumber property.</param>
 /// <param name="userUserIDKey">Initial value of the UserUserIDKey property.</param>
 public static Resume CreateResume(global::System.Int32 resumeIDKey, global::System.DateTime lastUpdated, global::System.String firstName, global::System.String lastName, global::System.String middleName, global::System.String missionStatement, global::System.String school, global::System.String certifications, global::System.String jobExperience, global::System.String email, global::System.String phoneNumber, global::System.Int32 userUserIDKey)
 {
     Resume resume = new Resume();
     resume.ResumeIDKey = resumeIDKey;
     resume.LastUpdated = lastUpdated;
     resume.FirstName = firstName;
     resume.LastName = lastName;
     resume.MiddleName = middleName;
     resume.MissionStatement = missionStatement;
     resume.School = school;
     resume.Certifications = certifications;
     resume.JobExperience = jobExperience;
     resume.Email = email;
     resume.PhoneNumber = phoneNumber;
     resume.UserUserIDKey = userUserIDKey;
     return resume;
 }