예제 #1
0
 internal void Sum(double quantity, string batch, StockValueKey key)
 {
     Sum(Convert.ToDecimal(quantity), batch, key);
 }
예제 #2
0
        internal void Sum(decimal quantity, string batch, StockValueKey key)
        {
            BalanceStock _bs = GetOrDefault(batch);

            _bs.Base[key] += quantity;
        }