public DataTable GetMainProductListBySubProduct(string productId) { ProductDAL product = new ProductDAL(); try { LumexDBPlayer db = LumexDBPlayer.Start(); DataTable dt = product.GetMainProductListBySubProduct(productId, db); db.Stop(); return dt; } catch (Exception) { throw; } finally { product = null; } }