Example #1
0
        public void AddDependency(BarItemType barType, IAnalyticsIdentity identity)
        {
            CalculationDependencyItem item = new CalculationDependencyItem(barType, identity);

            this.dependencies.Add(identity.UniqueShortName, item);
        }
Example #2
0
 public CalculationDependencyItem(BarItemType barType, IAnalyticsIdentity identity)
 {
     this.barType  = barType;
     this.identity = identity;
 }