public void UpdateProductActivation(string productId, string activationStatus) { ProductDAL product = new ProductDAL(); try { LumexDBPlayer db = LumexDBPlayer.Start(true); product.UpdateProductActivation(productId, activationStatus, db); db.Stop(); } catch (Exception) { throw; } finally { product = null; } }