public void DeletePhotographer(int ID) { for (int i = 0; i < FakePhotographers.Count; i++) { if (FakePhotographers[i].ID == ID) { FakePhotographers.RemoveAt(i); i--; } } }