Ejemplo n.º 1
0
        public Orders GetOrdersById(int?id)
        {
            Orders orders = iorders.GetOrdersById(id);

            return(orders);
        }
Ejemplo n.º 2
0
        public IEnumerable <Orders> GetOrdersById(int?id)
        {
            var orders = iorders.GetOrdersById(id);

            return(orders);
        }