internal void Sum(double quantity, string batch, StockValueKey key) { Sum(Convert.ToDecimal(quantity), batch, key); }
internal void Sum(decimal quantity, string batch, StockValueKey key) { BalanceStock _bs = GetOrDefault(batch); _bs.Base[key] += quantity; }