Skip to content

Instantly share code, notes, and snippets.

@bhdryrdm
Created December 25, 2017 22:38
Show Gist options
  • Save bhdryrdm/3b6143eae2dcfe91e2da4a7a57ff8cd1 to your computer and use it in GitHub Desktop.
Save bhdryrdm/3b6143eae2dcfe91e2da4a7a57ff8cd1 to your computer and use it in GitHub Desktop.
[TestMethod]
public void Delete()
{
University university = new University();
Department willBeDeletedDepartment = university.Department.FirstOrDefault(x => x.DepartmentID == 1);
university.Department.Delete(willBeDeletedDepartment);
university.PushToDB();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment