public void UpdateStudent(Person student) { Person toUpdate = GetStudent(student.PersonID); toUpdate.LastName = student.LastName; toUpdate.FirstName = student.FirstName; toUpdate.EnrollmentDate = student.EnrollmentDate; db.SaveChanges(); }
public void UpdateInstructor(Person instructor) { throw new NotImplementedException(); }
/// <summary> /// Create a new Person object. /// </summary> /// <param name="personID">Initial value of the PersonID property.</param> /// <param name="lastName">Initial value of the LastName property.</param> /// <param name="firstName">Initial value of the FirstName property.</param> public static Person CreatePerson(global::System.Int32 personID, global::System.String lastName, global::System.String firstName) { Person person = new Person(); person.PersonID = personID; person.LastName = lastName; person.FirstName = firstName; return person; }
public void AddStudent(Person student) { throw new NotImplementedException(); }
/// <summary> /// Deprecated Method for adding a new object to the People EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToPeople(Person person) { base.AddObject("People", person); }