private void InitEdit()
 {
     TextBoxMake.Text      = carOld.GetMake();
     TextBoxModel.Text     = carOld.GetModel();
     TextBoxYear.Text      = carOld.GetYear().ToString();
     TextBoxEngine.Text    = carOld.GetEngine();
     TextBoxVehicleID.Text = carOld.GetVehicleID();
     TextBoxPlate.Text     = carOld.GetPlate();
 }