public static void AddToNoCreateList(Commited buyingStock) { StockAccount.SynchronizeAccount.NoGetList = new Commited(buyingStock); }
public static void AddToNoSellList(Commited sellingStock) { StockAccount.SynchronizeAccount.NoGetList = new Commited(sellingStock); }
public Commited(Commited stock) : this(stock.Number, stock.Name, stock.CostPrice, stock.Unit, stock.TradingStatus) { }