public void Add(Fill fill) { Fills.Add(fill); Qty += fill.Qty; Commission += fill.Commission; Price = Fills.Sum(f => f.Qty * f.Price) / Qty; }