Exemplo n.º 1
0
        public static BuyOrder[] GetWithPriceGreaterOrEqual(decimal?sellPrice)
        {
            var buyOrders = new BuyOrders {
                BuyPrice = sellPrice
            };
            var ordersWithPriceGreaterOrEqual = buyOrders.GetWithPriceLessOrEqual();

            var result = EntitiesToLogicUnit(ordersWithPriceGreaterOrEqual);

            return(result);
        }