public void OrderByOperationDateTimeInOutHistory(bool desc = false) { if (desc) { InOutHistory = InOutHistory.OrderByDescending(whr => whr.OperationDateTime).ToList(); return; } InOutHistory = InOutHistory.OrderBy(whr => whr.OperationDateTime).ToList(); }
public void Add(WarehouseHistoryRecord warehouseItem) { InOutHistory.Add(warehouseItem); }