/// <summary>
 /// Method for removing element from stock list and file
 /// </summary>
 /// <param name="filePath">Path to stock file</param>
 /// <param name="list">RestaurantStock object, where stock is saved in memory</param>
 /// <param name="removableID">Removable item id</param>
 static public void RemoveElement(string filePath, RestaurantStock list, int removableID)
 {
     if (list.DoesItemExistsByID(removableID))
     {
         list.RemoveItem(removableID);
         fileInterface.DeleteEntryFromFile(filePath, removableID);
         Console.WriteLine(" Item removed succesfully\r\n");
     }
     else
     {
         Console.WriteLine(" Element with specified ID does not exist!");
     }
 }