private bool CheckVat(OrderItem orderitem)
 {
     try
     {
         return(order_db.CheckVat(orderitem));
     }
     catch (Exception e)
     {
         throw new Exception("Chapeau application couldn't connect to the database. Therefore we can't retrieve the order data.");
     }
 }