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