Exemplo n.º 1
0
        public List <OrderViewModel> GetOrderByCustomer(string CustomerName)
        {
            var list = new List <OrderViewModel>();

            list = _orderRespository.GetOrderByCustomer(CustomerName);
            return(list);
        }