[HttpGet] // Return the BOM of the order
        public bool SetOrderIsComplete(int idOrder)
        {
            SQLServerManager SQL = new SQLServerManager(SqlCnxStr);
            bool             res = SQL.SP_SetOrderIsComplete(SqlCnxStr, idOrder);

            return(res);
        }