private int GetGraphicsCardIndex(GraphicCard graphicCard)
 {
     foreach (GraphicCard g in GraphicsCards)
     {
         if (g.Id == graphicCard.Id)
         {
             return(GraphicsCards.IndexOf(g));
         }
     }
     return(-1);
 }