示例#1
0
        public Orders GetOrdersById(int?id)
        {
            Orders orders = iorders.GetOrdersById(id);

            return(orders);
        }
示例#2
0
        public IEnumerable <Orders> GetOrdersById(int?id)
        {
            var orders = iorders.GetOrdersById(id);

            return(orders);
        }