diff --git a/examples/FactSet.AnalyticsAPI.Engines.Example/Examples/PAEngineMultipleUnitExample.cs b/examples/FactSet.AnalyticsAPI.Engines.Example/Examples/PAEngineMultipleUnitExample.cs index 10842a8d..22e61c3e 100644 --- a/examples/FactSet.AnalyticsAPI.Engines.Example/Examples/PAEngineMultipleUnitExample.cs +++ b/examples/FactSet.AnalyticsAPI.Engines.Example/Examples/PAEngineMultipleUnitExample.cs @@ -147,8 +147,6 @@ private static PACalculationParametersRoot GetPaCalculationParameters() var paPricingSourceId = pricingSourcesResponse.Data.FirstOrDefault(pricingSource => (pricingSource.Value.Name == PricingSourceName && pricingSource.Value.Category == PricingSourceCategory && pricingSource.Value.Directory == PricingSourceDirectory)).Key; Console.WriteLine($"PA Pricing Source Id : {paPricingSourceId}"); - var paAccountIdentifier = new PAIdentifier(Portfolio); - var paAccounts = new List { paAccountIdentifier }; var paBenchmarkIdentifier = new PAIdentifier(Benchmark, Holdings); var paBenchmarks = new List { paBenchmarkIdentifier }; diff --git a/examples/FactSet.AnalyticsAPI.Engines.Example/Examples/PAEngineSingleUnitExample.cs b/examples/FactSet.AnalyticsAPI.Engines.Example/Examples/PAEngineSingleUnitExample.cs index f3859748..828110b6 100644 --- a/examples/FactSet.AnalyticsAPI.Engines.Example/Examples/PAEngineSingleUnitExample.cs +++ b/examples/FactSet.AnalyticsAPI.Engines.Example/Examples/PAEngineSingleUnitExample.cs @@ -155,10 +155,8 @@ private static PACalculationParametersRoot GetPaCalculationParameters() var paPricingSourceId = pricingSourcesResponse.Data.FirstOrDefault(pricingSource => (pricingSource.Value.Name == PricingSourceName && pricingSource.Value.Category == PricingSourceCategory && pricingSource.Value.Directory == PricingSourceDirectory)).Key; Console.WriteLine($"PA Pricing Source Id : {paPricingSourceId}"); - var paAccountIdentifier = new PAIdentifier(Portfolio); - var paAccounts = new List { paAccountIdentifier }; - var paBenchmarkIdentifier = new PAIdentifier(Benchmark,Holdings); + var paBenchmarkIdentifier = new PAIdentifier(Benchmark, Holdings); var paBenchmarks = new List { paBenchmarkIdentifier }; var paPortfolioPricingSources = new List { new PACalculationPricingSource(id: paPricingSourceId) };